Skip to content

Commit

Permalink
Chore: Add renovate.json to configure automated deps updates
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot authored and literat committed Dec 6, 2021
1 parent 0c2f377 commit adf893f
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"extends": [
"config:base",
":pinOnlyDevDependencies"
],
"ignorePresets": ["group:monorepos", "group:recommended", ":prHourlyLimit2"],
"enabledManagers": ["npm"],
"branchPrefix": "dependencies/",
"commitMessagePrefix": "Deps: ",
"schedule": ["after 10pm and before 7am on monday"],
"packageRules": [
{
"groupName": "all dev dependencies",
"groupSlug": "all-dev",
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["*"],
"matchDepTypes": ["devDependencies"]
},
{
"groupName": "major prod dependencies",
"groupSlug": "major-prod",
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["major"],
"matchDepTypes": ["dependencies"]
},
{
"groupName": "non-major prod dependencies",
"groupSlug": "non-major-prod",
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["minor", "patch"],
"matchDepTypes": ["dependencies"]
}
]
}

0 comments on commit adf893f

Please sign in to comment.