I start a new project with Angular, so decided to upgrade my global packages.
I run Windows10. Command ng -v
returns me:
Angular CLI: 6.0.8
Node: 8.12.0
OS: win32 x64
At the moment of writing this, the latest stable version is 6.2.4, as npmjs.com says.
In order to upgrade to the latest version I run:
npm uninstall -g @angular/cli
npm cache verify
npm install -g @angular/cli@latest
All commands complete successfully, and now I checking ng -v
but it is still 6.0.8. I would expect it to be 6.2.4.
What I'm doing wrong?