Angular CLI with yarn

后端 未结 4 1301
无人及你
无人及你 2021-02-05 13:03

How to change package manager for Angular Cli v6.0.3 to yarn? I tried:

ng set --global packageManager=yarn

But Angular says:

4条回答
  •  自闭症患者
    2021-02-05 13:51

    You can set global configuration using

    ng config -g cli.packageManager yarn
    

    If you want to set the package manager for a particular project then go to the root directory of the project and use the following command

    ng config cli.packageManager yarn
    

提交回复
热议问题