Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ updates:
ignore:
- dependency-name: '*'
update-types: ['version-update:semver-major']
# Nx is upgraded exclusively via `yarn nx migrate`, which keeps the whole `nx`/`@nx/*` set
# version-locked and applies config codemods (nx.json, project.json, migrations.json).
# A Dependabot bump only touches package.json/yarn.lock, so it silently skips the codemods
# and can desync plugin versions from the Nx runtime. Banned outright, security updates
# included — those must go through `nx migrate` too.
- dependency-name: 'nx'
- dependency-name: '@nx/*'
- dependency-name: '@nrwl/*'
groups:
production-dependencies:
dependency-type: 'production'
Expand Down
Loading