I want to install a specific version of angular(In particular 8.3.19). So, I run the command
npm install -g @angular/cli@8.3.19
. Now, it is installed on my machine but when I do bg --version
, I do see follwing:
Package Version
---------------------------------------------------------
@angular-devkit/architect 0.803.29
@angular-devkit/build-angular 0.803.29
@angular-devkit/core 8.3.29
@angular-devkit/schematics 11.2.11
@angular/cdk 8.2.3
@angular/cli 11.2.11
@angular/material 8.2.3
@schematics/angular 11.2.11
@schematics/update 0.1102.11
rxjs 6.4.0
typescript 3.5.3
webpack 4.42.1
which clearly states that angular cli version is 11.2.11, which not what I asked npm to install. I am not sure what I am doing wrong here. I am pretty new to npm and angular. Any suggestions?