Skip to content

Commit

Permalink
chore: improve Dependabot rules and grouping (#2003)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpro7 authored Dec 12, 2024
1 parent 07b003f commit 790f74b
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 83 deletions.
20 changes: 17 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,22 @@ updates:
prefix: "chore"
include: "scope"
groups:
angular-deps:
applies-to: version-updates
patterns:
- "@angular*"
update-types:
- "minor"
- "patch"
nx-deps:
applies-to: version-updates
patterns:
- "@nx/*"
- "@nrwl/*"
- "nx*"
- "@nx*"
- "@nrwl*"
update-types:
- "minor"
- "patch"
# groups:
# frontend-dependencies:
# applies-to: version-updates
Expand All @@ -25,8 +36,11 @@ updates:
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]
# we use github:dasch-swiss/ckeditor_custom_build#v2.0.0 and v2.0.1 seems to be broken
- dependency-name: "ckeditor5-custom-build"
# we use github:dasch-swiss/ckeditor_custom_build#v2.0.0 and v2.0.1 seems to be broken
# all nx and angular dependencies are for now handled manually, so for now are ignored
- dependency-name: "@angular/*"
- dependency-name: "nx*"

- package-ecosystem: "docker"
directory: "/"
Expand Down
92 changes: 16 additions & 76 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@
"typescript": "~5.4.0"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "16.10.0",
"@nx/nx-darwin-x64": "16.10.0",
"@nx/nx-linux-x64-gnu": "16.10.0",
"@nx/nx-win32-x64-msvc": "16.10.0"
"@nx/nx-darwin-arm64": "19.0.8",
"@nx/nx-darwin-x64": "19.0.8",
"@nx/nx-linux-x64-gnu": "19.0.8",
"@nx/nx-win32-x64-msvc": "19.0.8"
}
}

0 comments on commit 790f74b

Please sign in to comment.