-
-
Notifications
You must be signed in to change notification settings - Fork 14
feat: Angular 20 #151
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
base: main
Are you sure you want to change the base?
feat: Angular 20 #151
Conversation
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.
added these comments as a guideline (I'll take care of them)
const ref = this.parent.get(token, notFoundValue, flags); | ||
|
||
// if we're skipping ourselves then it's not our responsibility to destroy | ||
if (typeof flags === 'number') { | ||
if (!(flags & InjectFlags.SkipSelf) && this.destructibleProviders.has(token)) { | ||
if (!(flags && this.destructibleProviders.has(token))) { |
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.
this breaks the skipself flags
import { AbortController, AbortSignal } from '@nativescript/core/abortcontroller'; | ||
(global as any).AbortController = AbortController; | ||
(global as any).AbortSignal = AbortSignal; |
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.
should be in the pre-zone polyfills
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.
fixed but I'll leave comment in case want to adjust further - they are in pre-zone polyfills now.
next
(20 rc's)