-
Notifications
You must be signed in to change notification settings - Fork 6.8k
refactor: move version export to core entry-point #15700
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
refactor: move version export to core entry-point #15700
Conversation
This just needs a |
What is the breaking change? There is no change in public API technically. Or do you just want a general note reflecting what has changed under the hood? |
Nevermind, I forgot that all the core symbols are already re-exported through the root |
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, just needs rebase
* Moves the `VERSION` export to the the `core` secondary entry-point. This ensures that the V8 package schematics don't resolve the `VERSION` symbol to the incorrect `@angular/material/typings` module name. * Removes the unused and outdated material subpackages test case that has been replaced with a working one. * Ensures that the V8 material imports rule resolves the symbol from the imported identifier and not from the aliased one (minor cleanup; no effect as we resolve the identifer to the original symbol anyway; just slower)
13c549f
to
9eab1fd
Compare
@jelbourn Ready. waited for CI to be green. |
* Moves the `VERSION` export to the the `core` secondary entry-point. This ensures that the V8 package schematics don't resolve the `VERSION` symbol to the incorrect `@angular/material/typings` module name. * Removes the unused and outdated material subpackages test case that has been replaced with a working one. * Ensures that the V8 material imports rule resolves the symbol from the imported identifier and not from the aliased one (minor cleanup; no effect as we resolve the identifer to the original symbol anyway; just slower)
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. |
VERSION
export to the thecore
secondary entry-point. This ensures that the V8 package schematics don't resolve theVERSION
symbol to the incorrect@angular/material/typings
module name.Related to: angular/material.angular.io#590