Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular CLI version for Angular 4.4.6

I am going through angular 4.4.6 documentation and I want to install the same version in my system, but when i do

npm install -g @angular/cli

It installs the latest CLI i.e. 1.5.5 and whenever i create the projects on angular, my angular version is v5.0.5 which is the latest angular version. Which angular/cli version should I use for Angular 4.4.6?

like image 226
Saigal Amatya Avatar asked Dec 07 '17 08:12

Saigal Amatya


1 Answers

You want @angular/cli version 1.4.9:

npm install @angular/[email protected]

Checkout the branches and tags on the GitHub project site and open package.json to find out which version of @angular is supported by each CLI release:

like image 110
pixelbits Avatar answered Sep 24 '22 23:09

pixelbits