-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathrenovate.json
More file actions
26 lines (26 loc) · 787 Bytes
/
Copy pathrenovate.json
File metadata and controls
26 lines (26 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"baseBranch": "main",
"automerge": true,
"automergeType": "pr",
"packageRules": [
{
"matchPackageNames": ["@dagrejs/dagre"],
"allowedVersions": "<2.0.0",
"description": "Pin dagre to v1.x - v2 has bundling issues with external graphlib dependency"
},
{
"matchPackageNames": ["react", "react-dom", "@types/react", "@types/react-dom"],
"allowedVersions": "<19",
"description": "Pin React to v18 - v19's bundle trips Obsidian's obfuscation scanner (see #442); we use no v19-specific APIs"
},
{
"matchUpdateTypes": ["major"],
"automerge": false,
"description": "Do not automerge major updates"
}
]
}