Skip to content
This repository has been archived by the owner on Dec 8, 2021. It is now read-only.

Commit

Permalink
chore(config): reduce renovate noise via dep grouping
Browse files Browse the repository at this point in the history
closes #416
  • Loading branch information
jasonkuhrt committed Feb 12, 2019
1 parent 5740ea0 commit e4f765a
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
{
"extends": [
"config:base",
"docker:disable"
],
"automerge": true,
"major": {
"automerge": false
}
"extends": ["config:base", "docker:disable"],
"packageRules": [
{
"groupName": "patch & minor dev dependencies",
"depTypeList": ["devDependencies"],
"packagePatterns": [".*"],
"updateTypes": ["patch", "minor"]
},
{
"groupName": "patch prod dependencies",
"depTypeList": ["dependencies"],
"packagePatterns": [".*"],
"updateTypes": ["patch"]
}
]
}

0 comments on commit e4f765a

Please sign in to comment.