Closed as not planned
Description
🚀 Feature request
Command (mark with an x
)
- update
Description
$ ng update --all
'--all' functionality has been removed as updating multiple packages at once is not recommended.
To update packages which don’t provide 'ng update' capabilities in your workspace 'package.json' use 'npm update' instead.
Run the package manager update command after updating packages which provide 'ng update' capabilities.
Describe the solution you'd like
Bring back --all
… maybe with a -f
/--force
so the warning can remain.
Describe alternatives you've considered
ng update --force $(jq -r '.dependencies * .devDependencies | keys | map(select(startswith("@angular"))) | @tsv' package.json)
(then run: ncu
-ux '/typescript|rxjs/'
)