-
Notifications
You must be signed in to change notification settings - Fork 136
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
Ngx-build-plus can't run on Angular 14 #358
Comments
faced the same issue, move the "ngx-build-plus": "14.0.0" to the bottom of devDependancies in package.json. worked like a charm for me... |
I'm facing the same issue but with Angular 15. I don't want to upgrade to 16 just yet and I'm in a critical situation.
I tried moving |
try using overrides
|
that's exactly how I ended up making it work. thanks for following up :] |
If you're using yarn, you should use the following:
It would be nice for the next versions of this package if the devs could change the dependencies to be more restrictive on the major version of Angular. |
Hello. Yesterday I've tried to install ngx-build-plus version 14 , but encountered with interesting issue. As I can see in dependancies list we have
@schematics/angular
and@angular-devkit/build-angular
dependancies. Those are not fixed version dependancies but>=14.0.0
. Around 4 days ago Angular released version15.0.0
of those libraries. So now when You trying to installngx-build-plus
version 14 , it will depend on Anglular 15 because of those dependancies. Can You fix those dependancies and make them fixed version for Angular 14 ? Thanks!The text was updated successfully, but these errors were encountered: