Skip to content

Commit

Permalink
chore: separate important packages from group update (#3669)
Browse files Browse the repository at this point in the history
Renovate, in it's current config, is updating all minor and patch
updates in one group. This gets a little overwhelming at times. This PR
creates some more groups for the most important dependencies so that
they can be tackled one after the other.
  • Loading branch information
gfellerph authored Oct 8, 2024
1 parent 6af17cd commit 02c8564
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,38 @@
},
{
"matchPackagePatterns": ["*"],
"excludePackageNames": ["typescript", "bootstrap"],
"excludePackageNames": [
"typescript",
"bootstrap",
"sass",
"@storybook/*",
"@angular/*",
"@stencil/*"
],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch"
},
{
"matchPackagePatterns": ["@storybook/*"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "Storybook"
},
{
"matchPackagePatterns": ["@stencil/*"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "Stencil"
},
{
"matchPackagePatterns": ["sass"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "Sass"
},
{
"matchPackagePatterns": ["@angular/*"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "Angular"
},
{
"matchFiles": ["packages/migrations/package.json"],
"matchPackagePatterns": ["^@angular"],
Expand Down

0 comments on commit 02c8564

Please sign in to comment.