Skip to content

Commit 863cdbd

Browse files
zkatFishrock123
authored andcommitted
deps: upgrade to npm 2.12.1
PR-URL: #2112 Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent fb05c8e commit 863cdbd

File tree

434 files changed

+22910
-3510
lines changed

Some content is hidden

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

434 files changed

+22910
-3510
lines changed

deps/npm/AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -288,3 +288,6 @@ Cedric Nelson <[email protected]>
288288
Kat Marchán <[email protected]>
289289
290290
Eduardo Pinho <[email protected]>
291+
Rachel Hutchison <[email protected]>
292+
Ryan Temple <[email protected]>
293+
Eugene Sharygin <[email protected]>

deps/npm/CHANGELOG.md

+179-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,177 @@
1+
### v2.12.1 (2015-06-25):
2+
3+
#### HEY WHERE DID EVERYBODY GO
4+
5+
I keep [hearing some commotion](https://github.com/npm/npm/releases/tag/v3.0.0).
6+
Is there something going on? Like, a party or something? Anyway, here's a small
7+
release with at least two significant bug fixes, at least one of which some of
8+
you have been waiting for for quite a while.
9+
10+
#### REMEMBER WHEN I SAID "REMEMBER WHEN I SAID THAT THING ABOUT PERMISSIONS?"?
11+
12+
`[email protected]` has a change that introduces a fix for a permissions problem
13+
whereby the `_locks` directory in the cache directory can up being owned by
14+
root. The fix in 2.12.0 takes care of that problem, but introduces a new
15+
problem for Windows users where npm tries to call `process.getuid()`, which
16+
doesn't exist on Windows. It was easy enough to fix (but more or less
17+
impossible to test, thanks to all the external dependencies involved with
18+
permissions and platforms and whatnot), but as a result, Windows users might
19+
want to skip `[email protected]` and go straight to `[email protected]`. Sorry about that!
20+
21+
* [`7e5da23`](https://github.com/npm/npm/commit/7e5da238ee869201fdb9027c27b79b0f76b440a8)
22+
When using the new, "fixed" cache directory creator, be extra-careful to not
23+
call `process.getuid()` on platforms that lack it.
24+
([@othiym23](https://github.com/othiym23))
25+
26+
#### WHEW! ALL DONE FIXING GIT FOREVER!
27+
28+
New npm CLI team hero [@zkat](https://github.com/zkat) has finally (FINALLY)
29+
fixed the regression somebody (hi!) introduced a couple months ago whereby git
30+
URLs of the format `git+ssh://[email protected]:org/repo.git` suddenly stopped
31+
working, and also started being saved (and cached) incorrectly. I am 100% sure
32+
there are absolutely no more bugs in the git caching code at all ever. Mm hm.
33+
Yep. Pretty sure. Maybe. Hmm... I hope.
34+
35+
*Sighs audibly.*
36+
37+
[Let us know](http://github.com/npm/npm/issues/new) if we broke something else
38+
with this fix.
39+
40+
* [`94ca4a7`](https://github.com/npm/npm/commit/94ca4a711619ba8e40ce3d20bc42b13cdb7611b7)
41+
[#8031](https://github.com/npm/npm/issues/8031) Even though
42+
`git+ssh://[email protected]:org/repo.git` isn't a URL, treat it like one for
43+
the purposes of npm. ([@zkat](https://github.com/zkat))
44+
* [`e7f56e5`](https://github.com/npm/npm/commit/e7f56e5a97fcf1c52d5c5bee71303b0126129815)
45+
[#8031](https://github.com/npm/npm/issues/8031) `[email protected]`:
46+
Handle git URLs (and URL-like remote refs) in a manner consistent with npm's
47+
docs. ([@zkat](https://github.com/zkat))
48+
49+
#### YEP, THERE ARE STILL DEPENDENCY UPGRADES
50+
51+
* [`679bf47`](https://github.com/npm/npm/commit/679bf4745ac2cfbb01c9ce273e189807fd04fa33)
52+
[#40](http://github.com/npm/read-installed/issues/40) `[email protected]`:
53+
Handle prerelease versions in top-level dependencies not in `package.json`
54+
without marking those packages as invalid.
55+
([@benjamn](https://github.com/benjamn))
56+
* [`3a67410`](https://github.com/npm/npm/commit/3a6741068c9119174c920496778aeee870ebdac0)
57+
`[email protected]` ([@isaacs](https://github.com/isaacs))
58+
* [`151904a`](https://github.com/npm/npm/commit/151904af39dc24567f8c98529a2a64a4dbcc960a)
59+
`[email protected]` ([@isaacs](https://github.com/isaacs))
60+
61+
### v2.12.0 (2015-06-18):
62+
63+
#### REMEMBER WHEN I SAID THAT THING ABOUT PERMISSIONS?
64+
65+
About [a million people](https://github.com/npm/npm/issues?utf8=%E2%9C%93&q=is%3Aissue+EACCES+_locks)
66+
have filed issues related to having a tough time using npm after they've run
67+
npm once or twice with sudo. "Don't worry about it!" I said. "We've fixed all
68+
those permissions problems ages ago! Use this one weird trick and you'll never
69+
have to deal with this again!"
70+
71+
Well, uh, if you run npm with root the first time you run npm on a machine, it
72+
turns out that the directory npm uses to store lockfiles ends up being owned by
73+
the wrong user (almost always root), and that can, well, it can cause problems
74+
sometimes. By which I mean every time you run npm without being root it'll barf
75+
with `EACCES` errors. Whoops!
76+
77+
This is an obnoxious regression, and to prevent it from recurring, we've made
78+
it so that the cache, cached git remotes, and the lockfile directories are all
79+
created and maintained using the same utilty module, which not only creates the
80+
relevant paths with the correct permissions, but will fix the permissions on
81+
those directories (if it can) when it notices that they're broken. An `npm
82+
install` run as root ought to be sufficient to fix things up (and if that
83+
doesn't work, first tell us about it, and then run `sudo chown -R $(whoami)
84+
$HOME/.npm`)
85+
86+
Also, I apologize for inadvertently gaslighting any of you by claiming this bug
87+
wasn't actually a bug. I do think we've got this permanently dealt with now,
88+
but I'll be paying extra-close attention to permissions issues related to the
89+
cache for a while.
90+
91+
* [`85d1a53`](https://github.com/npm/npm/commit/85d1a53d7b5e0fc04823187e522ae3711ede61fa)
92+
Set permissions on lock directory to the owner of the process.
93+
([@othiym23](https://github.com/othiym23))
94+
95+
#### I WENT TO NODECONF AND ALL I GOT WAS THIS LOUSY SPDX T-SHIRT
96+
97+
That's not literally true. We spent very little time discussing SPDX,
98+
[@kemitchell](https://github.com/kemitchell) is a champ, and I had a lot of fun
99+
playing drum & bass to a mostly empty Boogie Barn and only ended up with one
100+
moderately severe cold for my pains. Another winner of a NodeConf! (I would
101+
probably wear a SPDX T-shirt if somebody gave me one, though.)
102+
103+
A bunch of us did have a spirited discussion of the basics of open-source
104+
intellectual property, and the convergence of me,
105+
[@kemitchell](https://github.com/kemitchell), and
106+
[@jandrieu](https://github.com/jandrieu) in one place allowed us to hammmer out
107+
a small but significant issue that had been bedeviling early adopters of the
108+
new SPDX expression syntax in `package.json` license fields: how to deal with
109+
packages that are left without a license on purpose.
110+
111+
Refer to [the docs](https://github.com/npm/npm/blob/16a3dd545b10f8a2464e2037506ce39124739b41/doc/files/package.json.md#license)
112+
for the specifics, but the short version is that instead of using
113+
`LicenseRef-LICENSE` for proprietary licenses, you can now use either
114+
`UNLICENSED` if you want to make it clear that you don't _want_ your software
115+
to be licensed (and want npm to stop warning you about this), or `SEE LICENSE
116+
IN <filename>` if there's a license with custom text you want to use. At some
117+
point in the near term, we'll be updating npm to verify that the mentioned
118+
file actually exists, but for now you're all on the honor system.
119+
120+
* [`4827fc7`](https://github.com/npm/npm/commit/4827fc784117c17f35dd9b51b21d1eff6094f661)
121+
[#8557](https://github.com/npm/npm/issues/8557)
122+
`[email protected]`: Allow `UNLICENSED` and `SEE LICENSE IN
123+
<filename>` in "license" field of `package.json`.
124+
([@kemitchell](https://github.com/kemitchell))
125+
* [`16a3dd5`](https://github.com/npm/npm/commit/16a3dd545b10f8a2464e2037506ce39124739b41)
126+
[#8557](https://github.com/npm/npm/issues/8557) Document the new accepted
127+
values for the "license" field.
128+
([@kemitchell](https://github.com/kemitchell))
129+
* [`8155311`](https://github.com/npm/npm/commit/81553119350deaf199e79e38e35b52a5c8ad206c)
130+
[#8557](https://github.com/npm/npm/issues/8557) `[email protected]`:
131+
Support new "license" field values at init time.
132+
([@kemitchell](https://github.com/kemitchell))
133+
134+
#### SMALLISH BUG FIXES
135+
136+
* [`9d8cac9`](https://github.com/npm/npm/commit/9d8cac94a258db648a2b1069b1c8c6529c79d013)
137+
[#8548](https://github.com/npm/npm/issues/8548) Remove extraneous newline
138+
from `npm view` output, making it easier to use in shell scripts.
139+
([@eush77](https://github.com/eush77))
140+
* [`765fd4b`](https://github.com/npm/npm/commit/765fd4bfca8ea3e2a4a399765b17eec40a3d893d)
141+
[#8521](https://github.com/npm/npm/issues/8521) When checking for outdated
142+
packages, or updating packages, raise an error when the registry is
143+
unreachable instead of silently "succeeding".
144+
([@ryantemple](https://github.com/ryantemple))
145+
146+
#### SMALLERISH DOCUMENTATION TWEAKS
147+
148+
* [`5018335`](https://github.com/npm/npm/commit/5018335ce1754a9f771954ecbc1a93acde9b8c0a)
149+
[#8365](https://github.com/npm/npm/issues/8365) Add details about which git
150+
environment variables are whitelisted by npm.
151+
([@nmalaguti](https://github.com/nmalaguti))
152+
* [`bed9edd`](https://github.com/npm/npm/commit/bed9edddfdcc6d22a80feab33b53e4ef9172ec72)
153+
[#8554](https://github.com/npm/npm/issues/8554) Fix typo in version docs.
154+
([@rainyday](https://github.com/rainyday))
155+
156+
#### WELL, I GUESS THERE ARE MORE DEPENDENCY UPGRADES
157+
158+
* [`7ce2f06`](https://github.com/npm/npm/commit/7ce2f06f6f34d469b1d2e248084d4f3fef10c05e)
159+
`[email protected]`: Refactor tunneling logic, and use `extend` instead of
160+
abusing `util._extend`. ([@simov](https://github.com/simov))
161+
* [`e6c6195`](https://github.com/npm/npm/commit/e6c61954aad42e20eec49745615c7640b2026a6c)
162+
`[email protected]`: Refined interception behavior.
163+
([@pgte](https://github.com/pgte))
164+
* [`9583cc3`](https://github.com/npm/npm/commit/9583cc3cb192c2fced006927cfba7cd37b588605)
165+
`[email protected]`: Ensure that `main` entry in `package.json` is always
166+
included in the bundled package tarball.
167+
([@coderhaoxin](https://github.com/coderhaoxin))
168+
* [`df89493`](https://github.com/npm/npm/commit/df894930f2716adac28740b29b2e863170919990)
169+
`[email protected]` ([@isaacs](https://github.com/isaacs))
170+
* [`9744049`](https://github.com/npm/npm/commit/974404934758124aa8ae5b54f7d5257c3bd6b588)
171+
`[email protected]`: `dezalgo` should be usable in the browser, and can be now
172+
that `asap` has been upgraded to be browserifiable.
173+
([@mvayngrib](https://github.com/mvayngrib))
174+
1175
### v2.11.3 (2015-06-11):
2176

3177
This was a very quiet week. This release was done by
@@ -15,19 +189,19 @@ NodeConf Adventure!
15189

16190
* [`9f439da`](https://github.com/npm/npm/commit/9f439da)
17191
`[email protected]`: License range updates
18-
(@kemitchell)[https://github.com/kemitchell]
192+
([@kemitchell](https://github.com/kemitchell))
19193
* [`2dd055b`](https://github.com/npm/npm/commit/2dd055b)
20194
`[email protected]`: Fixes a crashing bug when the package.json
21195
`scripts` property is not an object.
22-
(@iarna)[https://github.com/iarna]
196+
([@iarna](https://github.com/iarna))
23197
* [`e02e85d`](https://github.com/npm/npm/commit/e02e85d)
24198
`[email protected]`: Switches to using the `os-tmpdir` module instead of
25199
`os.tmpdir()` for greate consistency in behavior between node versions.
26-
(@iarna)[https://github.com/iarna]
200+
([@iarna](https://github.com/iarna))
27201
* [`a6f0265`](https://github.com/npm/npm/commit/a6f0265)
28-
`[email protected]` (@isaacs)[https://github.com/isaacs]
202+
`[email protected]` ([@isaacs](https://github.com/isaacs))
29203
* [`7395977`](https://github.com/npm/npm/commit/7395977)
30-
`[email protected]` (@isaacs)[https://github.com/isaacs]
204+
`[email protected]` ([@isaacs](https://github.com/isaacs))
31205

32206
### v2.11.2 (2015-06-04):
33207

deps/npm/doc/cli/npm-install.md

+16-3
Original file line numberDiff line numberDiff line change
@@ -166,11 +166,24 @@ after packing it up into a tarball (b).
166166
`git+https`. If no `<commit-ish>` is specified, then `master` is
167167
used.
168168

169+
The following git environment variables are recognized by npm and will be added
170+
to the environment when running git:
171+
172+
* `GIT_ASKPASS`
173+
* `GIT_PROXY_COMMAND`
174+
* `GIT_SSH`
175+
* `GIT_SSH_COMMAND`
176+
* `GIT_SSL_CAINFO`
177+
* `GIT_SSL_NO_VERIFY`
178+
179+
See the git man page for details.
180+
169181
Examples:
170182

171-
git+ssh://[email protected]:npm/npm.git#v1.0.27
172-
git+https://[email protected]/npm/npm.git
173-
git://github.com/npm/npm.git#v1.0.27
183+
npm install git+ssh://[email protected]:npm/npm.git#v1.0.27
184+
npm install git+https://[email protected]/npm/npm.git
185+
npm install git://github.com/npm/npm.git#v1.0.27
186+
GIT_SSH_COMMAND='ssh -i ~/.ssh/custom_ident' npm install git+ssh://[email protected]:npm/npm.git
174187

175188
* `npm install <githubname>/<githubrepo>[#<commit-ish>]`:
176189
* `npm install github:<githubname>/<githubrepo>[#<commit-ish>]`:

deps/npm/doc/cli/npm-version.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Run this in a package directory to bump the version and write the new
1111
data back to `package.json` and, if present, `npm-shrinkwrap.json`.
1212

1313
The `newversion` argument should be a valid semver string, *or* a
14-
valid second argument to semver.inc (one of "patch", "minor", "major",
15-
"prepatch", "preminor", "premajor", "prerelease"). In the second case,
14+
valid second argument to semver.inc (one of `patch`, `minor`, `major`,
15+
`prepatch`, `preminor`, `premajor`, `prerelease`). In the second case,
1616
the existing version will be incremented by 1 in the specified field.
1717

1818
If run in a git repo, it will also create a version commit and tag, and fail if
@@ -40,11 +40,11 @@ in your git config for this to work properly. For example:
4040

4141
Enter passphrase:
4242

43-
If "preversion", "version", "postversion" in the "scripts" property of
44-
the package.json, it will execute by running `npm version`. preversion
45-
and version ware executed before bump the package version, postversion
46-
was executed after bump the package version. For example to run `npm version`
47-
after passed all test:
43+
If `preversion`, `version`, or `postversion` are in the `scripts` property of
44+
the package.json, they will be executed as part of running `npm version`.
45+
`preversion` and `version` are executed before bumping the package version, and
46+
`postversion` is executed afterwards. For example, to run `npm version` only if
47+
all tests pass:
4848

4949
"scripts": { "preversion": "npm test" }
5050

deps/npm/doc/files/package.json.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ expression syntax version 2.0 string](http://npmjs.com/package/spdx), like this:
115115
If you are using a license that hasn't been assigned an SPDX identifier, or if
116116
you are using a custom license, use the following valid SPDX expression:
117117

118-
{ "license" : "LicenseRef-LICENSE" }
118+
{ "license" : "SEE LICENSE IN <filename>" }
119119

120-
Then include a LICENSE file at the top level of the package.
120+
Then include a file named `<filename>` at the top level of the package.
121121

122122
Some old packages used license objects or a "licenses" property containing an
123123
array of license objects:
@@ -147,6 +147,13 @@ Those styles are now deprecated. Instead, use SPDX expressions, like this:
147147

148148
{ "license": "(MIT OR Apache-2.0)" }
149149

150+
Finally, if you do not wish to grant others the right to use a private or
151+
unpublished package under any terms:
152+
153+
{ "license": "UNLICENSED"}
154+
155+
Consider also setting `"private": true` to prevent accidental publication.
156+
150157
## people fields: author, contributors
151158

152159
The "author" is one person. "contributors" is an array of people. A "person"

deps/npm/html/doc/README.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ <h2 id="legal-stuff">Legal Stuff</h2>
140140
<p>If you have a complaint about a package in the public npm registry,
141141
and cannot <a href="https://docs.npmjs.com/misc/disputes">resolve it with the package
142142
owner</a>, please email
143-
<a href="&#109;&#97;&#x69;&#x6c;&#116;&#111;&#58;&#115;&#x75;&#112;&#x70;&#x6f;&#114;&#116;&#64;&#110;&#x70;&#109;&#106;&#115;&#x2e;&#x63;&#111;&#x6d;">&#115;&#x75;&#112;&#x70;&#x6f;&#114;&#116;&#64;&#110;&#x70;&#109;&#106;&#115;&#x2e;&#x63;&#111;&#x6d;</a> and explain the situation.</p>
143+
<a href="&#109;&#x61;&#105;&#x6c;&#116;&#x6f;&#x3a;&#x73;&#x75;&#112;&#x70;&#x6f;&#114;&#x74;&#x40;&#x6e;&#x70;&#x6d;&#x6a;&#x73;&#x2e;&#x63;&#111;&#x6d;">&#x73;&#x75;&#112;&#x70;&#x6f;&#114;&#x74;&#x40;&#x6e;&#x70;&#x6d;&#x6a;&#x73;&#x2e;&#x63;&#111;&#x6d;</a> and explain the situation.</p>
144144
<p>Any data published to The npm Registry (including user account
145145
information) may be removed or modified at the sole discretion of the
146146
npm server administrators.</p>
@@ -183,5 +183,5 @@ <h2 id="see-also">SEE ALSO</h2>
183183
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
184184
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
185185
</table>
186-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@2.11.3</p>
186+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@2.12.1</p>
187187

deps/npm/html/doc/api/npm-bin.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
2828
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
2929
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3030
</table>
31-
<p id="footer">npm-bin &mdash; npm@2.11.3</p>
31+
<p id="footer">npm-bin &mdash; npm@2.12.1</p>
3232

deps/npm/html/doc/api/npm-bugs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3333
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
3434
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3535
</table>
36-
<p id="footer">npm-bugs &mdash; npm@2.11.3</p>
36+
<p id="footer">npm-bugs &mdash; npm@2.12.1</p>
3737

deps/npm/html/doc/api/npm-cache.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
4242
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4343
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4444
</table>
45-
<p id="footer">npm-cache &mdash; npm@2.11.3</p>
45+
<p id="footer">npm-cache &mdash; npm@2.12.1</p>
4646

deps/npm/html/doc/api/npm-commands.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ <h2 id="see-also">SEE ALSO</h2>
3636
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
3737
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3838
</table>
39-
<p id="footer">npm-commands &mdash; npm@2.11.3</p>
39+
<p id="footer">npm-commands &mdash; npm@2.12.1</p>
4040

deps/npm/html/doc/api/npm-config.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ <h2 id="see-also">SEE ALSO</h2>
5757
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
5858
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
5959
</table>
60-
<p id="footer">npm-config &mdash; npm@2.11.3</p>
60+
<p id="footer">npm-config &mdash; npm@2.12.1</p>
6161

deps/npm/html/doc/api/npm-deprecate.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ <h2 id="see-also">SEE ALSO</h2>
4747
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4848
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4949
</table>
50-
<p id="footer">npm-deprecate &mdash; npm@2.11.3</p>
50+
<p id="footer">npm-deprecate &mdash; npm@2.12.1</p>
5151

0 commit comments

Comments
 (0)