Angular CLI version for Angular 4.4.6

I am looking at angular 4.4.6 documentation and I want to install the same version on my system, but when I do

npm install -g @ angular / cli

It installs the last CLI, i.e. 1.5.5, and whenever I create projects on angular, my version of angular v5.0.5 is the latest version of angular. What version of angular / cli should be used for angular 4.4.6?

+6
source share
2 answers

You want @ angular / cli version 1.4.9:

npm install @angular/ cli@1.4.9 

Browse 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:

+10
source

What about angular 4.4.4 documentation? I visited the mentioned site of the GitHub project, but could not understand which client I need to install.

0
source

Source: https://habr.com/ru/post/1273909/


All Articles