Skip to content

Commit

Permalink
Add dependency grouping for npm updates
Browse files Browse the repository at this point in the history
  • Loading branch information
bingenito authored Mar 4, 2024
1 parent 0accbbb commit 1e72965
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,23 @@ updates:
schedule:
interval: "monthly"


- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"
groups:
angular: # group all angular updates together
patterns:
- "@angular*"
update-types: #i gnore major updates, these will be done manuall
- "minor"
- "patch"
rollup: # group all rollup updates together
patterns:
- "@rollup*"
- "rollup*"
testing: # group all dev testing updates together
patterns:
- "@types/jassmine"
- "jasmine*"
- "karma*"

0 comments on commit 1e72965

Please sign in to comment.