I have installed angular cli latest version. but I need to update it to cli 7 version
I have try this:
npm uninstall -g angular-cli
npm cache clean npm install -g
angular-cli@7.0.0
Does anyone know another way to do this please help.
I would do:
npm uninstall -g @angular/cli
npm install -g @angular/cli@7.3.10
ng --version
// should hopefully see version 7.3.10
7.3.10 is the latest stable version of 7 here.