-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
28 lines (28 loc) · 883 Bytes
/
renovate.json
File metadata and controls
28 lines (28 loc) · 883 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": ["config:recommended"],
"rangeStrategy": "bump",
"packageRules": [
{
"description": "Batch RUNTIME deps in templates",
"matchManagers": ["npm"],
"matchFileNames": ["templates/*/package.json"],
"matchDepTypes": ["dependencies", "optionalDependencies"],
"groupName": "Template runtime deps",
"groupSlug": "templates-runtime",
"separateMajorMinor": false,
"separateMinorPatch": false,
"labels": ["templates", "runtime"]
},
{
"description": "Batch DEV deps in templates",
"matchManagers": ["npm"],
"matchFileNames": ["templates/*/package.json"],
"matchDepTypes": ["devDependencies"],
"groupName": "Template dev deps",
"groupSlug": "templates-dev",
"separateMajorMinor": false,
"separateMinorPatch": false,
"labels": ["templates", "dev"]
}
]
}