Skip to content

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

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open

feat: Angular 20 #151

wants to merge 10 commits into from

Conversation

NathanWalker
Copy link
Contributor

  • Uses latest Angular next (20 rc's)

Copy link
Collaborator

@edusperoni edusperoni left a 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))) {
Copy link
Collaborator

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

Comment on lines 9 to 11
import { AbortController, AbortSignal } from '@nativescript/core/abortcontroller';
(global as any).AbortController = AbortController;
(global as any).AbortSignal = AbortSignal;
Copy link
Collaborator

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

Copy link
Contributor Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants