-
Notifications
You must be signed in to change notification settings - Fork 26k
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
fix(compiler-cli): emitting references to ngtypecheck files #57138
Conversation
Follow-up to angular#56961 which doesn't appear to have caught all the cases. This change moves the pre-emit untagging to `NgCompiler.prepareEmit` which seems to cover a bit more comared to `NgtscProgram.emit`. Fixes angular#57135.
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.
Ah, yes, this makes sense; while NgCompiler
is internal, both the CLI and ng-packagr call into it directly to be able to use TS's builder APIs for incremental compilations.
Note to self: will need to cherry pick this into patch. |
This PR was merged into the repository by commit 0f0a1f2. The changes were merged into the following branches: main |
…57138) Follow-up to angular#56961 which doesn't appear to have caught all the cases. This change moves the pre-emit untagging to `NgCompiler.prepareEmit` which seems to cover a bit more comared to `NgtscProgram.emit`. Fixes angular#57135. PR Close angular#57138
…57138) Follow-up to angular#56961 which doesn't appear to have caught all the cases. This change moves the pre-emit untagging to `NgCompiler.prepareEmit` which seems to cover a bit more comared to `NgtscProgram.emit`. Fixes angular#57135. PR Close angular#57138
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. |
…57138) Follow-up to angular#56961 which doesn't appear to have caught all the cases. This change moves the pre-emit untagging to `NgCompiler.prepareEmit` which seems to cover a bit more comared to `NgtscProgram.emit`. Fixes angular#57135. PR Close angular#57138
Follow-up to #56961 which doesn't appear to have caught all the cases. This change moves the pre-emit untagging to
NgCompiler.prepareEmit
which seems to cover a bit more comared toNgtscProgram.emit
.Fixes #57135.