Reputation: 893
How can I upgrade my existing angular application to Bootstrap version 4.0.0.
I know it would be easy but I am looking for proper process to upgrade without facing much issues as I could see many stack overflows of Bootstrap 4.0.0 Stable bugs.
Thanks,
Upvotes: 10
Views: 17330
Reputation: 401
npm update --save @ng-bootstrap/ng-bootstrap
This will update your current bootstrap package to lastest version. And then run
npm audit fix
Upvotes: 1
Reputation: 18123
My take is:
npm i bootstrap
to install bootstrap4npm install --save @ng-bootstrap/ng-bootstrap
Upvotes: 13