Skip to content

Commit

Permalink
Add dependency grouping for npm updates (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
bingenito authored Mar 5, 2024
1 parent 08364c3 commit d86e76c
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,27 @@ updates:
schedule:
interval: "monthly"


- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"
groups:
angular: # group all angular updates together
patterns:
- "@angular*"
update-types: # group angular where highest version is minor or patch
- "minor"
- "patch"
rollup: # group all rollup updates together
patterns:
- "@rollup*"
- "rollup*"
testing: # group all dev testing updates together
patterns:
- "@types/jasmine"
- "jasmine*"
- "karma*"
ignore:
- dependency-name: "@angular*"
update-types: ["version-update:semver-major"]

0 comments on commit d86e76c

Please sign in to comment.