-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: npm#6 Reviewed-By: Evan Lucas <[email protected]>
- Loading branch information
Showing
701 changed files
with
19,551 additions
and
17,311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ Forbes Lindesay <[email protected]> | |
Forrest L Norvell <[email protected]> <[email protected]> | ||
Gabriel Barros <[email protected]> | ||
Geoff Flarity <[email protected]> <gflarity@raptvm-x02.(none)> | ||
Ifeanyi Oraelosi <[email protected]> | ||
Isaac Z. Schlueter <[email protected]> <[email protected]> | ||
Isaac Z. Schlueter <[email protected]> isaacs <[email protected]> | ||
Jake Verbaten <[email protected]> | ||
|
@@ -59,3 +60,4 @@ Will Elwood <[email protected]> | |
Wout Mertens <[email protected]> | ||
Yeonghoon Park <[email protected]> | ||
Zeke Sikelianos <[email protected]> | ||
Zoujie Wzj <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -364,3 +364,21 @@ Jan Schär <[email protected]> | |
Xcat Liu <[email protected]> | ||
harryh <[email protected]> | ||
Prayag Verma <[email protected]> | ||
Neil Kistner <[email protected]> | ||
Zoujie Wzj <[email protected]> | ||
Ryan Hendrickson <[email protected]> | ||
Arturo Coronel <[email protected]> | ||
Hutson Betts <[email protected]> | ||
Lewis Cowper <[email protected]> | ||
Adam Byrne <[email protected]> | ||
Ifeanyi Oraelosi <[email protected]> | ||
Robert Ludwig <[email protected]> | ||
Chris Warren <[email protected]> | ||
Scott Plumlee <[email protected]> | ||
Daniel Pedersen <[email protected]> | ||
rhgb <[email protected]> | ||
doug.wade <[email protected]> | ||
Zac <[email protected]> | ||
GriffinSchneider <[email protected]> | ||
Andres Kalle <[email protected]> | ||
thefourtheye <[email protected]> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,8 @@ npm-update(1) -- Update a package | |
|
||
npm update [-g] [<pkg>...] | ||
|
||
aliases: up, upgrade | ||
|
||
## DESCRIPTION | ||
|
||
This command will update all the packages listed to the latest version | ||
|
@@ -22,7 +24,7 @@ or local) will be updated. | |
|
||
As of `[email protected]`, the `npm update` will only inspect top-level packages. | ||
Prior versions of `npm` would also recursively inspect all dependencies. | ||
To get the old behavior, use `npm --depth Infinity update`. | ||
To get the old behavior, use `npm --depth 9999 update`. | ||
|
||
## EXAMPLES | ||
|
||
|
@@ -36,7 +38,7 @@ on dependencies, `dep1` (`dep2`, .. etc.). The published versions of `dep1` are | |
``` | ||
{ | ||
"dist-tags": { "latest": "1.2.2" }, | ||
"versions": { | ||
"versions": [ | ||
"1.2.2", | ||
"1.2.1", | ||
"1.2.0", | ||
|
@@ -46,7 +48,7 @@ on dependencies, `dep1` (`dep2`, .. etc.). The published versions of `dep1` are | |
"0.4.1", | ||
"0.4.0", | ||
"0.2.0" | ||
} | ||
] | ||
} | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,20 +127,18 @@ Patches welcome! | |
Contributors are listed in npm's `package.json` file. You can view them | ||
easily by doing `npm view npm contributors`. | ||
|
||
If you would like to contribute, but don't know what to work on, check | ||
the issues list or ask on the mailing list. | ||
If you would like to contribute, but don't know what to work on, read | ||
the contributing guidelines and check the issues list. | ||
|
||
* https://github.com/npm/npm/wiki/Contributing-Guidelines | ||
* <https://github.com/npm/npm/issues> | ||
* <[email protected]> | ||
|
||
## BUGS | ||
|
||
When you find issues, please report them: | ||
|
||
* web: | ||
<https://github.com/npm/npm/issues> | ||
* email: | ||
<[email protected]> | ||
|
||
Be sure to include *all* of the output from the npm command that didn't work | ||
as expected. The `npm-debug.log` file is also helpful to provide. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.