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
ng add
Currently, ng add ngx-build-plus command adds ngx-build-plus package into dependencies in package.json.
ng add ngx-build-plus
ngx-build-plus
dependencies
I think it will be better that adds it into devDependencies because ngx-build-plus is not needed in runtime.
devDependencies
The text was updated successfully, but these errors were encountered:
+1 -- do you know, is there a way to tell ng add that a lib shall be added to the devDependencies?
Sorry, something went wrong.
workaround:
yarn add -D ngx-build-plus ng add ngx-build-plus
feat: add ngx-build-plus as a devdep. Will close manfredsteyer#47
8ba7142
@manfredsteyer angular/angular-cli#15815
From v9, ng-add supports adding a package to devDependencies. 🎉
ng-add
No branches or pull requests
Currently,
ng add ngx-build-plus
command addsngx-build-plus
package intodependencies
in package.json.I think it will be better that adds it into
devDependencies
becausengx-build-plus
is not needed in runtime.The text was updated successfully, but these errors were encountered: