Skip to content

Commit

Permalink
feat: add some presets
Browse files Browse the repository at this point in the history
  • Loading branch information
p-chan committed Apr 22, 2021
1 parent 55626cb commit 0c6056d
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,59 @@
"helpers:disableTypesNodeMajor",
"workarounds:all"
]
},
"app": {
"extends": [
"@stardust-configs/renovate-config:base",
":pinAllExceptPeerDependencies",
"schedule:weekly"
],
"packageRules": [
{
"groupName": "devDependencies (non-major)",
"matchDepTypes": [
"devDependencies"
],
"matchCurrentVersion": "!/^0/",
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"groupName": "dependencies (non-major)",
"matchDepTypes": [
"dependencies"
],
"matchCurrentVersion": "!/^0/",
"matchUpdateTypes": [
"minor",
"patch"
]
}
]
},
"lib": {
"extends": [
"@stardust-configs/renovate-config:base",
":pinOnlyDevDependencies",
"schedule:monthly"
],
"packageRules": [
{
"matchCurrentVersion": "!/^0/",
"matchUpdateTypes": [
"minor"
]
},
{
"matchCurrentVersion": "!/^0/",
"matchUpdateTypes": [
"patch"
],
"automerge": true
}
]
}
}
}

0 comments on commit 0c6056d

Please sign in to comment.