-
Notifications
You must be signed in to change notification settings - Fork 6.8k
build: update to Angular 14 stable #25027
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
Conversation
`@angular/bazel` currently uses an older version of `@microsoft/api-extractor` which is causing downstream issues in Components. These changes bump up to a version that has a fix. Context: angular/components#25027
Blocked until angular/angular#46259 is released. |
`@angular/bazel` currently uses an older version of `@microsoft/api-extractor` which is causing downstream issues in Components. These changes bump up to a version that has a fix. Context: angular/components#25027 PR Close #46259
`@angular/bazel` currently uses an older version of `@microsoft/api-extractor` which is causing downstream issues in Components. These changes bump up to a version that has a fix. Context: angular/components#25027 PR Close #46259
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.
LGTM
@@ -72,7 +72,7 @@ function addAnimationsModule(options: Schema) { | |||
try { | |||
addAnimationsModuleToNonStandaloneApp(host, project, context, options); | |||
} catch (e) { | |||
if (e instanceof SchematicsException && e.message.includes('Bootstrap call not found')) { | |||
if (e instanceof Error && e.message.includes('Bootstrap call not found')) { |
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.
I made this change, because I ended up with a version mismatch between some of the Tooling packages by accident which broke the check here. Checking against Error
instead should be more robust.
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.
FWIW: Amy and I had a similar issue last time where even instanceof Error
did not work due to the devkit executing schematics in a different VM context. Might not be an issue here since it throws in the same VM context, but worth mentioning.. not ideal
Bumps up the repo to the stable version of Angular 14.
Bumps up the repo to the stable version of Angular 14. (cherry picked from commit 13d257c)
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Bumps up the repo to the stable version of Angular 14.