-
-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathrenovate.json
More file actions
28 lines (28 loc) · 590 Bytes
/
renovate.json
File metadata and controls
28 lines (28 loc) · 590 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
27
28
{
"extends": [
":dependencyDashboard",
":prConcurrentLimit10",
"group:monorepos",
"group:recommended",
"workarounds:all"
],
"prHourlyLimit": 3,
"rebaseWhen": "behind-base-branch",
"updateInternalDeps": true,
"postUpdateOptions": ["yarnDedupeFewer"],
"packageRules": [
{
"matchPaths": ["packages/**"],
"rangeStrategy": "replace"
},
{
"matchPaths": ["examples/**"],
"rangeStrategy": "pin"
},
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
}
]
}