Skip to content

Commit

Permalink
chore: refactor renovate.json (#1202)
Browse files Browse the repository at this point in the history
Flatten packageRules and update field names
  • Loading branch information
rarkins authored Sep 14, 2021
1 parent 5dc0c72 commit 06dd1f1
Showing 1 changed file with 12 additions and 16 deletions.
28 changes: 12 additions & 16 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,33 +11,29 @@
},
"packageRules": [
{
"matchPaths": ["+(package.json)"],
"rangeStrategy": "replace",
"minor": {
"groupName": "non-major shared dependencies",
"groupSlug": "shared-minor-patch"
}
"matchFiles": ["package.json"],
"matchUpdateTypes": ["patch", "minor"],
"groupName": "non-major shared dependencies",
"groupSlug": "shared-minor-patch"
},
{
"matchPaths": ["packages/**"],
"minor": {
"groupName": "non-major package dependencies",
"groupSlug": "packages-minor-patch"
}
"matchUpdateTypes": ["patch", "minor"],
"groupName": "non-major package dependencies",
"groupSlug": "packages-minor-patch"
},
{
"matchPaths": ["examples/**"],
"minor": {
"groupName": "non-major example dependencies",
"groupSlug": "examples-minor-patch"
}
"matchUpdateTypes": ["patch", "minor"],
"groupName": "non-major example dependencies",
"groupSlug": "examples-minor-patch"
},
{
"packagePatterns": ["^@zendeskgarden/react"],
"matchPackagePatterns": ["^@zendeskgarden/react"],
"enabled": false
},
{
"depTypeList": ["peerDependencies"],
"matchDepTypes": ["peerDependencies"],
"enabled": false
}
]
Expand Down

0 comments on commit 06dd1f1

Please sign in to comment.