Upgrade angular CLI

Lakin Mohapatra
1 min readSep 23, 2019

--

First of all, you need to uninstall existing angular CLI from the machine, then need to remove cache and install latest cli.
You need to execute the following commands.

npm uninstall -g angular-cli
npm cache clean or npm cache verify #(if npm > 5)
npm install -g @angular/cli@latest

If you want to update local packages as per the version of the latest CLI installed, then you need to execute following commands.

rm -rf node_modules
npm uninstall --save-dev angular-cli
npm install --save-dev @angular/cli@latest
npm install

Hopefully, above commands will help you to upgrade angular CLI.
Thanks for reading my article. Please add your feedback/suggestions in below comment section.

--

--

Lakin Mohapatra
Lakin Mohapatra

Written by Lakin Mohapatra

Software Engineer | Hungry coder | Proud Indian | Cyber Security Researcher | Blogger | Architect (web2 + web 3)

No responses yet