We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am getting the warning below when using Angular 17. I think the fix could be to update the "lib" package.json dependencie settings:
"@angular/common": "^16", => "@angular/core": ">=16" "@angular/core": "^16",
Waring:
npm WARN While resolving: [email protected] npm WARN Found: @angular/[email protected] npm WARN node_modules/@angular/common npm WARN peer @angular/common@"^17.0.0 || ^18.0.0" from @angular/[email protected] npm WARN node_modules/@angular/cdk npm WARN peer @angular/cdk@"17.0.3" from @angular/[email protected] npm WARN node_modules/@angular/material npm WARN 1 more (the root project) npm WARN 10 more (@angular/forms, @angular/google-maps, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer @angular/common@"^16" from [email protected] npm WARN node_modules/ngx-icon-picker npm WARN ngx-icon-picker@"^1.11.2" from the root project npm WARN npm WARN Conflicting peer dependency: @angular/[email protected] npm WARN node_modules/@angular/common npm WARN peer @angular/common@"^16" from [email protected] npm WARN node_modules/ngx-icon-picker npm WARN ngx-icon-picker@"^1.11.2" from the root project npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: [email protected] npm WARN Found: @angular/[email protected] npm WARN node_modules/@angular/core npm WARN peer @angular/core@"17.0.3" from @angular/[email protected] ...
My package.json:
"dependencies": { "@angular/animations": "17.0.3", "@angular/cdk": "17.0.3", "@angular/common": "17.0.3", "@angular/compiler": "17.0.3", "@angular/core": "17.0.3", "@angular/forms": "17.0.3", "@angular/google-maps": "^17.0.3", "@angular/material": "17.0.3", "@angular/material-date-fns-adapter": "17.0.3", "@angular/platform-browser": "17.0.3", "@angular/platform-browser-dynamic": "17.0.3", "@angular/router": "17.0.3", "@ngrx/component-store": "17.0.1", "@ngrx/effects": "17.0.1", "@ngrx/entity": "17.0.1", "@ngrx/router-store": "17.0.1", "@ngrx/store": "17.0.1", "@nx/angular": "17.2.8", "lodash-es": "^4.17.21", "ngx-icon-picker": "^1.11.2", "rxjs": "~7.8.0", "tslib": "^2.3.0", "zone.js": "0.14.2" }
The text was updated successfully, but these errors were encountered:
Same issue here
Sorry, something went wrong.
@Bregi you should be able to fix the issue by adding an override in package.json,
"overrides": { "ngx-icon-picker": { "@angular/common": "$@angular/common", "@angular/core": "$@angular/core" } }
@boban100janovski great, thanks for this, wasn't aware of this (temporary) possibility
No branches or pull requests
I am getting the warning below when using Angular 17.
I think the fix could be to update the "lib" package.json dependencie settings:
Waring:
My package.json:
The text was updated successfully, but these errors were encountered: