Thursday, February 8, 2018

Your global Angular CLI version is greater than your local version . The local Angular CLI version is used.


local version CLI is installed under your specific project folder, node module.
Every project folder has there own local CLI version installed.

So you should UNDER your project folder run below command.




error:
Your global Angular CLI version(xxx) is greater than your local version (xxxxxx). The local Angular CLI version is used.

npm uninstall --save-dev angular-cli
npm install --save-dev @angular/cli@latest
npm install