diff options
author | isaacs <i@izs.me> | 2013-07-12 08:56:59 -0700 |
---|---|---|
committer | isaacs <i@izs.me> | 2013-07-12 08:56:59 -0700 |
commit | 9da67fa5198f3c0839904ae05cbfe88c61b3ad09 (patch) | |
tree | 61c03f98b7c2ae549f67c01e1afe6dcbe84847d6 /deps/npm/doc/cli/npm-update.md | |
parent | f88b8dad84cd8f37000e55f0b5de7963cbb252cf (diff) | |
download | node-new-9da67fa5198f3c0839904ae05cbfe88c61b3ad09.tar.gz |
npm: Upgrade to 1.3.3
Diffstat (limited to 'deps/npm/doc/cli/npm-update.md')
-rw-r--r-- | deps/npm/doc/cli/npm-update.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/deps/npm/doc/cli/npm-update.md b/deps/npm/doc/cli/npm-update.md new file mode 100644 index 0000000000..9ebdda72ab --- /dev/null +++ b/deps/npm/doc/cli/npm-update.md @@ -0,0 +1,24 @@ +npm-update(1) -- Update a package +================================= + +## SYNOPSIS + + npm update [-g] [<name> [<name> ...]] + +## DESCRIPTION + +This command will update all the packages listed to the latest version +(specified by the `tag` config). + +It will also install missing packages. + +If the `-g` flag is specified, this command will update globally installed packages. +If no package name is specified, all packages in the specified location (global or local) will be updated. + +## SEE ALSO + +* npm-install(1) +* npm-outdated(1) +* npm-registry(7) +* npm-folders(7) +* npm-list(1) |