Skip to content

Commit

Permalink
refactor: flatten updateTypes in packageRules (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
teppeis committed Nov 23, 2018
1 parent 663ff32 commit d5cee44
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,9 @@ Renovate fetches it from npm registry automatically.
},
{
"description": "automerge minor updates of widely used libraries in devDeps",
"minor": {
"automerge": true
},
"updateTypes": ["minor"],
"depTypeList": ["devDependencies"],
"automerge": true,
"packageNames": ["glob", "mocha", "npm-run-all", "power-assert", "rimraf", "sinon"]
},
{
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,13 @@
},
{
"description": "automerge minor updates of widely used libraries in devDeps",
"minor": {
"automerge": true
},
"updateTypes": [
"minor"
],
"depTypeList": [
"devDependencies"
],
"automerge": true,
"packageNames": [
"glob",
"mocha",
Expand Down

0 comments on commit d5cee44

Please sign in to comment.