Lines Matching full:update
2 title: npm-update
4 description: Update packages
10 npm update [<pkg>...]
17 This command will update all the packages listed to the latest version
24 If the `-g` flag is specified, this command will update globally installed
30 Note that by default `npm update` will not update the semver values of direct
31 dependencies in your project `package.json`. If you want to also update
32 values in `package.json` you can run: `npm update --save` (or add the
69 Then `npm update` will install `dep1@1.2.2`, because `1.2.2` is `latest` and
82 In this case, running `npm update` will install `dep1@1.1.2`. Even though the
97 `npm update` will install `dep1@0.2.0`.
107 Then `npm update` will install `dep1@0.4.1`, because that is the highest-sorting
136 Then `npm update` will install `dep1@1.1.2` because that is the highest
146 `npm update -g` will apply the `update` action to each globally installed
151 caret semver range specified. So if you require to update to `latest` you may
161 * Default: `true` unless when using `npm update` where it defaults to `false`
367 commands that modify your local installation, eg, `install`, `update`,
408 - Commands that operate on the `node_modules` tree (install, update, etc.)