-
Notifications
You must be signed in to change notification settings - Fork 2.6k
feat(angular): support angular cli v20.0.0-rc.3 #30715
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Skipped Deployment
|
View your CI Pipeline Execution ↗ for commit fab9c09.
☁️ Nx Cloud last updated this comment at |
d5dafab
to
2e1d907
Compare
2e1d907
to
3aa9505
Compare
Expand the browser support to the widely available Baseline in ng-packagr executors.
- Allow control of source map sources content for application builds by adding the `sourcesContent` property to the `sourceMap` option - Support custom resolution conditions with applications by adding the `conditions` option - Fix `server` option type
…h `@angular/platform-browser` (#31209) Update generators to generate code using `@angular/platform-browser` instead of `@angular/platform-browser-dynamic` for v20. With this change, new workspaces/apps won't install `@angular/platform-browser-dynamic` anymore. The only exception is when using Jest as the test runner, as the `jest-preset-angular` package still requires that dependency.
#31213) Support generating components with `.ng.html` extension as per angular/angular#59522.
… suffix/type (#31236) - Update generators to generate directives without the `.directive`/`Directive` suffix/type by default for Angular v20 - Keep the ability to generate directives with the `.directive`/`Directive` suffix/type by providing the `type` option for the `@nx/angular:directive` and `@nx/angular:scam-directive` generators - When the workspace uses a version lower than v20, the generators will still generate directives with the `.directive`/`Directive` suffix/type by default Note: a migration will be provided in a separate PR so existing workspaces continue generating directives with the `.directive`/`Directive` suffix/type.
… suffix/type (#31233) - Update generators to generate components without the `.component`/`Component` suffix/type by default for Angular v20 - Keep the ability to generate components with the `.component`/`Component` suffix/type by providing the `type` option for the `@nx/angular:component` and `@nx/angular:scam` generators - When the workspace uses a version lower than v20, the generators will still generate components with the `.component`/`Component` suffix/type by default Note: a migration will be provided in a separate PR so existing workspaces continue generating components with the `.component`/`Component` suffix/type.
- Update pipe and scam pipe generators to use a `-` type separator by default for Angular v20 - Generate pipes with a `.` type separator for Angular versions below v20 - Add the `typeSeparator` option to allow choosing between both Note: a migration will be provided in a separate PR so existing workspaces continue generating pipes with the `.` type separator.
Update Angular packages to their latest prerelease versions.
…31248) Adds a migration that will set relevant generator defaults to ensure existing workspaces keep using the previous style guide matching their existing code base. It adds generator defaults for both `@nx/angular` and `@schematics/angular` collections.
#31250) Filter out some extra files when deciding where to generate the web worker snippet.
- Update generators to generate module files with a `-` type separator by default for Angular v20 - Generate module files with a `.` type separator for Angular versions below v20 Note: a migration was already merged in a separate PR so existing workspaces continue generating module files with the `.` type separator.
jaysoo
approved these changes
May 26, 2025
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add support for the Angular CLI 20.0.0-rc.3 version.