Upgrading Angular-CLI on an existing project

Hi,

I just got started with WebStorm for Angular 2 development, and I was wondering if WebStorm provides a way to upgrade Angular-CLI to the latest version, including project updates etc? 

Angular-CLI itself does provide a way to upgrade your project to the latest version using the command line.

0
1 comment

No, there is no way to do this from UI. If you miss this feature, please feel free to file a request to youtrack, https://youtrack.jetbrains.com/issues/WEB.

For now, you have to perform the required steps from terminal:

rm -rf node_modules dist tmp
npm install --save-dev angular-cli@latest
npm install
ng init
0

Please sign in to leave a comment.