-
Notifications
You must be signed in to change notification settings - Fork 12
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
Unable to resolve dependency tree with Angular 11 #47
Comments
okay, will update to support v12 |
I updated peer dependency to v12, but i'm not sure if that will backward support v11 in your project, please let me know |
I think it would make more sense to include all the major versions you support like this: "peerDependencies": {
"@angular/common": "^10.0.0 || ^11.0.0 || ^12.0.0",
"@angular/core": "^10.0.0 || ^11.0.0 || ^12.0.0"
} I'm not sure what the lowest supported version is so you might add or remove some. |
done, now V1.71 uses peer dependency 10 to 12. Thank you! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi all,
this project does not work with Angular 11 or higher due to the following error:
I think the dependencies/peer dependencies must be updated or be more vague, e.g.
@angular/common: "^10.0.0 || ^11.0.0"
. This is probably similar to #22 .Thank you!
The text was updated successfully, but these errors were encountered: