-
Notifications
You must be signed in to change notification settings - Fork 405
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(form-plugin): replace takeUntil
with takeUntilDestroyed
#2283
Conversation
View your CI Pipeline Execution ↗ for commit d2aa9a4.
☁️ Nx Cloud last updated this comment at |
@ngxs/devtools-plugin
@ngxs/form-plugin
@ngxs/hmr-plugin
@ngxs/router-plugin
@ngxs/storage-plugin
@ngxs/store
@ngxs/websocket-plugin
commit: |
BundleMonUnchanged files (6)
No change in files bundle size Unchanged groups (1)
Final result: ✅ View report in BundleMon website ➡️ |
BundleMon (NGXS Plugins)Files updated (1)
Unchanged files (8)
Total files change +15B +0.07% Groups updated (1)
Final result: ❌ View report in BundleMon website ➡️ |
BundleMon (Integration Projects)Files added (1)
Files removed (3)
Total files change -139.27KB -67.72% Final result: ✅ View report in BundleMon website ➡️ |
In this commit, we replace `takeUntil` with `takeUntilDestroyed` and remove `ngOnDestroy` in favor of using `DestroyRef`.
2dd9286
to
d2aa9a4
Compare
Code Climate has analyzed commit d2aa9a4 and detected 0 issues on this pull request. The test coverage on the diff in this pull request is 94.7% (50% is the threshold). This pull request will bring the total coverage in the repository to 95.3% (-0.1% change). View more on Code Climate. |
In this commit, we replace
takeUntil
withtakeUntilDestroyed
and removengOnDestroy
in favor of using
DestroyRef
.