-
Notifications
You must be signed in to change notification settings - Fork 26.2k
refactor(core): add ApplicationRef.prototype.bootstrapImpl with injector parameter
#60622
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
f3bd739 to
54baf5a
Compare
injector parameter to ApplicationRef.prototype.bootstrapApplicationRef.prototype.ɵbootstrap with injector parameter
54baf5a to
a520ef6
Compare
ApplicationRef.prototype.ɵbootstrap with injector parameterApplicationRef.prototype.bootstrapImpl with injector parameter
a520ef6 to
bd0e458
Compare
…`injector` parameter (#60622) This allows any components individually bootstrapped to inherit from a unique `Injector`. This is useful when bootstrapping multiple root components with different providers. For now, the function is private while we explore potential designs to consolidate it with the existing `ApplicationRef.prototype.bootstrap` method. PR Close #60622
|
This PR was merged into the repository by commit 7cb8639. The changes were merged into the following branches: main, 19.2.x |
…with an `injector` parameter (angular#60622)" This reverts commit 7cb8639.
|
@dgp1130 We unfortunately had to revert this. The test is broken post merge. The failure was that the |
|
@jessicajaniuk can you link me to the test failure? Not sure what would be going on here post-merge that would cause a failure. |
|
@dgp1130 I think you'll see it if you rebase first. Can you give that a try? |
… with an `injector` parameter (angular#60622)" (angular#60669) This reverts commit d5a8a1c.
bd0e458 to
5c2248f
Compare
… with an `injector` parameter (angular#60622)" (angular#60669) This reverts commit d5a8a1c.
5c2248f to
d49590d
Compare
…`injector` parameter This is a roll forward of commit d5a8a1c. Nothing is meaningfully different, as we're trying again to see if the CI failure is reproducible.
d49590d to
da970d1
Compare
|
This PR was merged into the repository by commit 2348f26. The changes were merged into the following branches: main, 19.2.x |
This allows any components individually bootstrapped to inherit from a unique
Injector. This is useful when bootstrapping multiple root components with different providers.Blocking cl/741690539.