Closed
Description
Versions
CLI 6.0.0-rc.7
Repro steps
ng set --global packageManager=yarn
Observed behavior
$ ng set --global packageManager=yarn
The specified command ("set") is invalid. For a list of available options,
run "ng help".
Did you mean "e"?
Desired behavior
Show a helpful error message explaining the change. Possible text idea below:
`ng set` and `ng get` have been replaced with `ng config`.
Before:
ng set packageManager=yarn
After:
ng config cli.packageManager yarn
Ideally the instructions would translate the command they tried running or it could just output ng config --help.