ng update [options]
ng update command updates the application and its dependencies. Options are optional parameters.
Sr.No. | Argument & Syntax | Description |
---|---|---|
1 | <keyword> | The keyword to search for, as provided in the search bar in angular.io. |
Sr.No. | Option & Syntax | Description |
---|---|---|
1 | --all=true|false | Whether to update all packages in package.json. Default: false |
2 | --allowDirty=true|false | Whether to allow updating when the repository contains modified or untracked files. |
3 | --createCommits=true|false |
Create source control commits for updates and migrations. Default: false Aliases: -C |
4 | --force=true|false |
If false, will error out if installed packages are incompatible with the update. Default: false |
5 | --from=from | Version from which to migrate from. Only available with a single package being updated, and only on migration only. |
6 | --help=true|false|json|JSON |
Shows a help message for this command in the console. Default: false |
7 | --migrateOnly=true|false | Only perform a migration, does not update the installed version. |
8 | --next=true|false |
Use the largest version, including beta and RCs. Default: false |
9 | --packages | The names of package(s) to update. |
10 | --to=to | Version up to which to apply migrations. Only available with a single package being updated, and only on migrations only. Requires from to be specified. Default to the installed version detected. |
11 | --verbose=true|false |
Display additional details about internal operations during execution. Default: false |
First move to an angular project updated using ng build command.
Now run the update command. Now ng will update dependencies using npm.
\>Node\>Howcodex> ng update Using package manager: 'npm' Collecting installed dependencies... Found 31 dependencies. We analyzed your package.json and everything seems to be in order. Good work!