Skip to content

Commit c1afa53

Browse files
committed
deps: upgrade npm to 2.11.0
PR-URL: #1829 Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent a65762c commit c1afa53

File tree

272 files changed

+2526
-1354
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

272 files changed

+2526
-1354
lines changed

deps/npm/.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Nicolas Morel <[email protected]>
3333
Olivier Melcher <[email protected]>
3434
Ra'Shaun Stovall <[email protected]>
3535
36+
3637
Ryan Emery <[email protected]>
3738
Sam Mikes <[email protected]>
3839
Takaya Kobayashi <[email protected]>

deps/npm/AUTHORS

+9
Original file line numberDiff line numberDiff line change
@@ -279,3 +279,12 @@ Antti Mattila <[email protected]>
279279
280280
Matt Zorn <[email protected]>
281281
Kyle Mitchell <[email protected]>
282+
Michael Hayes <[email protected]>
283+
Benjamin Coe <[email protected]>
284+
Jeremiah Senkpiel <[email protected]>
285+
Michael Klein <[email protected]>
286+
Simen Bekkhus <[email protected]>
287+
288+
thefourtheye <[email protected]>
289+
Clay Carpenter <[email protected]>
290+
bangbang93 <[email protected]>

deps/npm/CHANGELOG.md

+132
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,135 @@
1+
### v2.11.0 (2015-05-21):
2+
3+
For the first time in a very long time, we've added new events to the life
4+
cycle used by `npm run-script`. Since running `npm version (major|minor|patch)`
5+
is typically the last thing many developers do before publishing their updated
6+
packages, it makes sense to add life cycle hooks to run tests or otherwise
7+
preflight the package before doing a full publish. Thanks, as always, to the
8+
indefatigable [@watilde](https://github.com/watilde) for yet another great
9+
usability improvement for npm!
10+
11+
#### FEATURELETS
12+
13+
* [`b07f7c7`](https://github.com/npm/npm/commit/b07f7c7c1e5021730b3c320f1b3a46e70f8a21ff)
14+
[#7906](https://github.com/npm/npm/issues/7906)
15+
Add new [`scripts`](https://github.com/npm/npm/blob/master/doc/misc/npm-scripts.md) to
16+
allow you to run scripts before and after
17+
the [`npm version`](https://github.com/npm/npm/blob/master/doc/cli/npm-version.md)
18+
command has run. This makes it easy to, for instance, require that your
19+
test suite passes before bumping the version by just adding `"preversion":
20+
"npm test"` to the scripts section of your `package.json`.
21+
([@watilde](https://github.com/watilde))
22+
* [`8a46136`](https://github.com/npm/npm/commit/8a46136f42e416cbadb533bcf89d73d681ed421d)
23+
[#8185](https://github.com/npm/npm/issues/8185)
24+
When we get a "not found" error from the registry, we'll now check to see
25+
if the package name you specified is invalid and if so, give you a better
26+
error message. ([@thefourtheye](https://github.com/thefourtheye))
27+
28+
#### BUG FIXES
29+
30+
* [`9bcf573`](https://github.com/npm/npm/commit/9bcf5730bd0316f210dafea898afe9103849cea9)
31+
[#8324](https://github.com/npm/npm/pull/8324) On Windows, when you've configured a
32+
custom `node-gyp`, run it with node itself instead of using the default open action (which
33+
is almost never what you want). ([@bangbang93](https://github.com/bangbang93))
34+
* [`1da9b04`](https://github.com/npm/npm/commit/1da9b0411d3416c7fca17d08cbbcfca7ae86e92d)
35+
[#7195](https://github.com/npm/npm/issues/7195)
36+
[#7260](https://github.com/npm/npm/issues/7260) `[email protected]`:
37+
(Re-)allow publication of existing mixed-case packages (part 1).
38+
([@smikes](https://github.com/smikes))
39+
* [`e926783`](https://github.com/npm/npm/commit/e9267830ab261c751f12723e84d2458ae9238646)
40+
[#7195](https://github.com/npm/npm/issues/7195)
41+
[#7260](https://github.com/npm/npm/issues/7260)
42+
`[email protected]`: (Re-)allow publication of existing mixed-case
43+
packages (part 2). ([@smikes](https://github.com/smikes))
44+
45+
#### DOCUMENTATION IMPROVEMENTS
46+
47+
* [`f62ee05`](https://github.com/npm/npm/commit/f62ee05333b141539a8e851c620dd2e82ff06860)
48+
[#8314](https://github.com/npm/npm/issues/8314) Update the README to warn
49+
folks away from using the CLI's internal API. For the love of glob, just use a
50+
child process to run the CLI! ([@claycarpenter](https://github.com/claycarpenter))
51+
* [`1093921`](https://github.com/npm/npm/commit/1093921c04db41ab46db24a170a634a4b2acd8d9)
52+
[#8279](https://github.com/npm/npm/pull/8279)
53+
Update the documentation to note that, yes, you can publish scoped packages to the
54+
public registry now! ([@mantoni](https://github.com/mantoni))
55+
* [`f87cde5`](https://github.com/npm/npm/commit/f87cde5234a760d3e515ffdaacaed6f5b71dbf44)
56+
[#8292](https://github.com/npm/npm/pull/8292)
57+
Fix typo in an example and grammar in the description in
58+
the [shrinkwrap documentation](https://github.com/npm/npm/blob/master/doc/cli/npm-shrinkwrap.md).
59+
([@vshih](https://github.com/vshih))
60+
* [`d3526ce`](https://github.com/npm/npm/commit/d3526ceb09a0c29fdb7d4124536ae09057d033e7)
61+
Improve the formatting in
62+
the [shrinkwrap documentation](https://github.com/npm/npm/blob/master/doc/cli/npm-shrinkwrap.md).
63+
([@othiym23](https://github.com/othiym23))
64+
* [`19fe6d2`](https://github.com/npm/npm/commit/19fe6d20883e28956ff916fe4dae42d73ee6195b)
65+
[#8311](https://github.com/npm/npm/pull/8311)
66+
Update [README.md](https://github.com/npm/npm#readme) to use syntax highlighting in
67+
its code samples and bits of shell scripts. ([@SimenB](https://github.com/SimenB))
68+
69+
#### DEPENDENCY UPDATES! ALWAYS AND FOREVER!
70+
71+
* [`fc52160`](https://github.com/npm/npm/commit/fc52160d0223226fffe4166f42fdfd3b899b3c1e)
72+
[#4700](https://github.com/npm/npm/issues/4700) [#5044](https://github.com/npm/npm/issues/5044)
73+
`[email protected]`: Make entering an invalid version while running `npm init` give
74+
you an immediate error and prompt you to correct it. ([@watilde](https://github.com/watilde))
75+
* [`738853e`](https://github.com/npm/npm/commit/738853eb1f55636476a2a410c2c04732eec9d51e)
76+
[#7763](https://github.com/npm/npm/issues/7763) `[email protected]`: Fix a bug
77+
where errors would not propagate, making error messages unhelpful.
78+
([@iarna](https://github.com/iarna))
79+
* [`6d74a2d`](https://github.com/npm/npm/commit/6d74a2d2ac7f92750cf6a2cfafae1af23b569098)
80+
`[email protected]`: Fix tests on windows ([@Bacra](https://github.com)) and with
81+
more recent `hosted-git-info`. ([@iarna](https://github.com/iarna))
82+
* [`50f7178`](https://github.com/npm/npm/commit/50f717852fbf713ef6cbc4e0a9ab42657decbbbd)
83+
`[email protected]`: Correct spelling in its documentation.
84+
([@iarna](https://github.com/iarna))
85+
* [`d7956ca`](https://github.com/npm/npm/commit/d7956ca17c057d5383ff0d3fc5cf6ac2940b034d)
86+
`[email protected]`: Fix a bug where unusual error conditions could make
87+
further use of the module fail. ([@isaacs](https://github.com/isaacs))
88+
* [`44f7d74`](https://github.com/npm/npm/commit/44f7d74c5d3181d37da7ea7949c86b344153f8d9)
89+
`[email protected]`: Update to the most recent tap to get a whole host of bug
90+
fixes and integration with [coveralls](https://coveralls.io/).
91+
([@isaacs](https://github.com/isaacs))
92+
* [`c21e8a8`](https://github.com/npm/npm/commit/c21e8a8d94bcf0ad79dc583ddc53f8366d4813b3)
93+
`[email protected]` ([@othiym23](https://github.com/othiym23))
94+
95+
#### LICENSE FILES FOR THE LICENSE GOD
96+
97+
* Add missing ISC license file to package ([@kasicka](https://github.com/kasicka)):
98+
* [`aa9908c`](https://github.com/npm/npm/commit/aa9908c20017729673b9d410b77f9a16b7aae8a4) `[email protected]`
99+
* [`23a3b1a`](https://github.com/npm/npm/commit/23a3b1a726b9176c70ce0ccf3cd9d25c54429bdf) `[email protected]`
100+
* [`8e04bba`](https://github.com/npm/npm/commit/8e04bba830d4353d84751d21803cd127c96153a7) `[email protected]`
101+
* [`50f7178`](https://github.com/npm/npm/commit/50f717852fbf713ef6cbc4e0a9ab42657decbbbd) `[email protected]`
102+
* [`6a54917`](https://github.com/npm/npm/commit/6a54917fbd4df995495a95d4b548defd44b77c93) `[email protected]`
103+
* [`971f92c`](https://github.com/npm/npm/commit/971f92c4a4e5514217d1e4db45d1ccf71a60ff19) `[email protected]`
104+
* [`67b50b7`](https://github.com/npm/npm/commit/67b50b7667a42bb3340a660eb2e617e1a554d2d4) `[email protected]`
105+
106+
#### SPDX LICENSE UPDATES
107+
108+
* Switch license to
109+
[BSD-2-Clause](http://spdx.org/licenses/BSD-2-Clause.html#licenseText) from
110+
plain "BSD" ([@isaacs](https://github.com/isaacs)):
111+
* [`efdb733`](https://github.com/npm/npm/commit/efdb73332eeedcad4c609796929070b62abb37ab) `[email protected]`
112+
* [`e926783`](https://github.com/npm/npm/commit/e9267830ab261c751f12723e84d2458ae9238646) `[email protected]`
113+
* Switch license to [ISC](http://spdx.org/licenses/ISC.html#licenseText) from
114+
[BSD](http://spdx.org/licenses/BSD-2-Clause.html#licenseText)
115+
([@isaacs](https://github.com/isaacs)):
116+
* [`c300956`](https://github.com/npm/npm/commit/c3009565a964f0ead4ac4ab234b1a458e2365f17) `[email protected]`
117+
* [`1de1253`](https://github.com/npm/npm/commit/1de125355765fecd31e682ed0ff9d2edbeac0bb0) `[email protected]`
118+
* [`0d5698a`](https://github.com/npm/npm/commit/0d5698ab132e376c7aec93ae357c274932116220) `[email protected]`
119+
* [`2e84921`](https://github.com/npm/npm/commit/2e84921474e1ffb18de9fce4616e73171fa8046d) `[email protected]`
120+
* [`872fac9`](https://github.com/npm/npm/commit/872fac9d10c11607e4d0348c08a683b84e64d30b) `[email protected]`
121+
* [`01eb7f6`](https://github.com/npm/npm/commit/01eb7f60acba584346ad8aae846657899f3b6887) `[email protected]`
122+
* [`294336f`](https://github.com/npm/npm/commit/294336f0f31c7b9fe31a50075ed750db6db134d1) `[email protected]`
123+
* [`ebdf6a1`](https://github.com/npm/npm/commit/ebdf6a14d17962cdb7128402c53b452f91d44ca7) `[email protected]`
124+
* Switch license to [ISC](http://spdx.org/licenses/ISC.html#licenseText) from
125+
[MIT](http://spdx.org/licenses/MIT.html#licenseText)
126+
([@isaacs](https://github.com/isaacs)):
127+
* [`e5d237f`](https://github.com/npm/npm/commit/e5d237fc0f436dd2a89437ebf8a9632a2e35ccbe) `[email protected]`
128+
* [`79fef14`](https://github.com/npm/npm/commit/79fef1421b78f044980f0d1bf0e97039b6992710) `[email protected]`
129+
* [`22527da`](https://github.com/npm/npm/commit/22527da4816e7c2746cdc0317c5fb4a85152d554) `[email protected]`
130+
* [`882ac87`](https://github.com/npm/npm/commit/882ac87a6c4123ca985d7ad4394ea5085e5b0ef5) `[email protected]`
131+
* [`9d9d015`](https://github.com/npm/npm/commit/9d9d015a2e972f68664dda54fbb204db28b21ede) `[email protected]`
132+
1133
### v2.10.1 (2015-05-14):
2134

3135
#### BUG FIXES & DOCUMENTATION TWEAKS

deps/npm/Makefile

+2-7
Original file line numberDiff line numberDiff line change
@@ -230,12 +230,7 @@ test: doc
230230
tag:
231231
npm tag npm@$(PUBLISHTAG) latest
232232

233-
authors:
234-
@bash scripts/update-authors.sh &&\
235-
git add AUTHORS &&\
236-
git commit -m "update AUTHORS" || true
237-
238-
publish: authors link doc
233+
publish: link doc
239234
@git push origin :v$(shell npm -v) 2>&1 || true
240235
git clean -fd &&\
241236
git push origin $(BRANCH) &&\
@@ -248,4 +243,4 @@ release:
248243
sandwich:
249244
@[ $$(whoami) = "root" ] && (echo "ok"; echo "ham" > sandwich) || (echo "make it yourself" && exit 13)
250245

251-
.PHONY: all latest install dev link doc clean uninstall test man doc-clean docclean release authors
246+
.PHONY: all latest install dev link doc clean uninstall test man doc-clean docclean release

deps/npm/README.md

+51-29
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,23 @@ There's a pretty robust install script at
4040

4141
Here's an example using curl:
4242

43-
curl -L https://www.npmjs.com/install.sh | sh
43+
```sh
44+
curl -L https://www.npmjs.com/install.sh | sh
45+
```
4446

4547
### Slightly Fancier
4648

4749
You can set any npm configuration params with that script:
4850

49-
npm_config_prefix=/some/path sh install.sh
51+
```sh
52+
npm_config_prefix=/some/path sh install.sh
53+
```
5054

5155
Or, you can run it in uber-debuggery mode:
5256

53-
npm_debug=1 sh install.sh
57+
```sh
58+
npm_debug=1 sh install.sh
59+
```
5460

5561
### Even Fancier
5662

@@ -83,11 +89,14 @@ No.
8389

8490
So sad to see you go.
8591

86-
sudo npm uninstall npm -g
87-
92+
```sh
93+
sudo npm uninstall npm -g
94+
```
8895
Or, if that fails,
8996

90-
sudo make uninstall
97+
```sh
98+
sudo make uninstall
99+
```
91100

92101
## More Severe Uninstalling
93102

@@ -101,13 +110,17 @@ remove them.
101110
To remove cruft left behind by npm 0.x, you can use the included
102111
`clean-old.sh` script file. You can run it conveniently like this:
103112

104-
npm explore npm -g -- sh scripts/clean-old.sh
113+
```sh
114+
npm explore npm -g -- sh scripts/clean-old.sh
115+
```
105116

106117
npm uses two configuration files, one for per-user configs, and another
107118
for global (every-user) configs. You can view them by doing:
108119

109-
npm config get userconfig # defaults to ~/.npmrc
110-
npm config get globalconfig # defaults to /usr/local/etc/npmrc
120+
```sh
121+
npm config get userconfig # defaults to ~/.npmrc
122+
npm config get globalconfig # defaults to /usr/local/etc/npmrc
123+
```
111124

112125
Uninstalling npm does not remove configuration files by default. You
113126
must remove them yourself manually if you want them gone. Note that
@@ -116,26 +129,35 @@ you have chosen.
116129

117130
## Using npm Programmatically
118131

119-
If you would like to use npm programmatically, you can do that.
120-
It's not very well documented, but it *is* rather simple.
121-
122-
Most of the time, unless you actually want to do all the things that
123-
npm does, you should try using one of npm's dependencies rather than
124-
using npm itself, if possible.
125-
126-
Eventually, npm will be just a thin cli wrapper around the modules
127-
that it depends on, but for now, there are some things that you must
128-
use npm itself to do.
129-
130-
var npm = require("npm")
131-
npm.load(myConfigObject, function (er) {
132-
if (er) return handlError(er)
133-
npm.commands.install(["some", "args"], function (er, data) {
134-
if (er) return commandFailed(er)
135-
// command succeeded, and data might have some info
136-
})
137-
npm.registry.log.on("log", function (message) { .... })
138-
})
132+
Although npm can be used programmatically, its API is meant for use by the CLI
133+
*only*, and no guarantees are made regarding its fitness for any other purpose.
134+
If you want to use npm to reliably perform some task, the safest thing to do is
135+
to invoke the desired `npm` command with appropriate arguments.
136+
137+
The semantic version of npm refers to the CLI itself, rather than the
138+
underlying API. _The internal API is not guaranteed to remain stable even when
139+
npm's version indicates no breaking changes have been made according to
140+
semver._
141+
142+
If you _still_ would like to use npm programmatically, it's _possible_. The API
143+
isn't very well documented, but it _is_ rather simple.
144+
145+
Eventually, npm will be just a thin CLI wrapper around the modules that it
146+
depends on, but for now, there are some things that only the CLI can do. You
147+
should try using one of npm's dependencies first, and only use the API if what
148+
you're trying to do is only supported by npm itself.
149+
150+
```javascript
151+
var npm = require("npm")
152+
npm.load(myConfigObject, function (er) {
153+
if (er) return handlError(er)
154+
npm.commands.install(["some", "args"], function (er, data) {
155+
if (er) return commandFailed(er)
156+
// command succeeded, and data might have some info
157+
})
158+
npm.registry.log.on("log", function (message) { .... })
159+
})
160+
```
139161

140162
The `load` function takes an object hash of the command-line configs.
141163
The various `npm.commands.<cmd>` functions take an **array** of
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
if not defined npm_config_node_gyp (
22
node "%~dp0\..\..\node_modules\node-gyp\bin\node-gyp.js" %*
33
) else (
4-
%npm_config_node_gyp% %*
4+
node %npm_config_node_gyp% %*
55
)

0 commit comments

Comments
 (0)