Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(angular): add migration to disable @angular-eslint/prefer-standalone when not set #29164

Merged
Merged
Show file tree
Hide file tree
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
13 changes: 11 additions & 2 deletions packages/angular/migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@
"cli": "nx",
"version": "20.2.0-beta.5",
"requires": {
"@angular/core": ">=19.0.0-rc.1"
"@angular/core": ">=19.0.0"
},
"description": "Add the '@angular/localize/init' polyfill to the 'polyfills' option of targets using esbuild-based executors.",
"factory": "./src/migrations/update-20-2-0/add-localize-polyfill-to-targets"
Expand All @@ -301,10 +301,19 @@
"cli": "nx",
"version": "20.2.0-beta.5",
"requires": {
"@angular/core": ">=19.0.0-rc.1"
"@angular/core": ">=19.0.0"
},
"description": "Update '@angular/ssr' import paths to use the new '/node' entry point when 'CommonEngine' is detected.",
"factory": "./src/migrations/update-20-2-0/update-angular-ssr-imports-to-use-node-entry-point"
},
"disable-angular-eslint-prefer-standalone": {
"cli": "nx",
"version": "20.2.0-beta.6",
"requires": {
"@angular/core": ">=19.0.0"
},
"description": "Disable the Angular ESLint prefer-standalone rule if not set.",
"factory": "./src/migrations/update-20-2-0/disable-angular-eslint-prefer-standalone"
}
},
"packageJsonUpdates": {
Expand Down
8 changes: 4 additions & 4 deletions packages/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@
"piscina": "^4.4.0"
},
"peerDependencies": {
"@angular-devkit/build-angular": ">= 16.0.0 < 19.0.0",
"@angular-devkit/core": ">= 16.0.0 < 19.0.0",
"@angular-devkit/schematics": ">= 16.0.0 < 19.0.0",
"@schematics/angular": ">= 16.0.0 < 19.0.0",
"@angular-devkit/build-angular": ">= 17.0.0 < 20.0.0",
"@angular-devkit/core": ">= 17.0.0 < 20.0.0",
"@angular-devkit/schematics": ">= 17.0.0 < 20.0.0",
"@schematics/angular": ">= 17.0.0 < 20.0.0",
"rxjs": "^6.5.3 || ^7.5.0"
},
"publishConfig": {
Expand Down
Loading
Loading