-
Notifications
You must be signed in to change notification settings - Fork 68
build: update cross-repo angular dependencies to v22.0.0-rc.0 #3667
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,16 +25,16 @@ | |
| "pnpm": "10.33.4" | ||
| }, | ||
| "dependencies": { | ||
| "@angular/compiler-cli": "22.0.0-next.12", | ||
| "@angular/compiler-cli": "22.0.0-rc.0", | ||
| "typescript": "6.0.3" | ||
| }, | ||
| "devDependencies": { | ||
| "@angular/build": "22.0.0-next.8", | ||
| "@angular/cli": "22.0.0-next.8", | ||
| "@angular/common": "22.0.0-next.12", | ||
| "@angular/compiler": "22.0.0-next.12", | ||
| "@angular/core": "22.0.0-next.12", | ||
| "@angular/platform-browser": "22.0.0-next.12", | ||
| "@angular/build": "22.0.0-rc.0", | ||
| "@angular/cli": "22.0.0-rc.0", | ||
|
Comment on lines
+32
to
+33
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The update to |
||
| "@angular/common": "22.0.0-rc.0", | ||
| "@angular/compiler": "22.0.0-rc.0", | ||
| "@angular/core": "22.0.0-rc.0", | ||
| "@angular/platform-browser": "22.0.0-rc.0", | ||
| "@babel/core": "^7.28.5", | ||
| "@bazel/bazelisk": "1.28.1", | ||
| "@rollup/plugin-commonjs": "^29.0.0", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updating
@angular/buildand@angular/clito22.0.0-rc.0while leaving other Angular dependencies (such as@angular/compiler-clion line 27) at22.0.0-next.12creates a version mismatch. In the Angular ecosystem, it is highly recommended to keep all@angular/*packages synchronized to the same version to ensure compatibility and avoid unexpected build or runtime behavior, especially when moving from a 'next' to an 'rc' release.