-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: Add renovate.json to configure automated deps updates
- Loading branch information
1 parent
0c2f377
commit adf893f
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
} | ||
] | ||
} |