Skip to content

Commit af4940d

Browse files
zkatMyles Borins
authored and
Myles Borins
committed
deps: upgrade npm in LTS to 2.15.9
PR-URL: #7692 Reviewed-By: Myles Borins <[email protected]>
1 parent d863327 commit af4940d

File tree

327 files changed

+1756
-7798
lines changed

Some content is hidden

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

327 files changed

+1756
-7798
lines changed

deps/npm/.travis.yml

+28-18
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,33 @@
1-
language: node_js
21
sudo: false
3-
node_js:
4-
# LTS is our most important target
5-
- "4"
6-
# next LTS and master is next most important
7-
- "6"
8-
# still in LTS maintenance until fall 2016
9-
# (also still in wide use)
10-
- "0.10"
11-
# will be unsupported as soon as 6 becomes LTS and 7 released
12-
- "5"
13-
# technically in LTS / distros, unbeloved
14-
- "0.12"
15-
env:
16-
- DEPLOY_VERSION=testing
2+
# need to declare the language as well as the matrix below
3+
language: node_js
4+
# having top-level `env:` adds a phantom build
5+
# https://github.com/travis-ci/travis-ci/issues/4681
6+
#env: DEPLOY_VERSION=testing
7+
matrix:
8+
include:
9+
# LTS is our most important target
10+
- node_js: "4"
11+
# DEPLOY_VERSION is used to set the couchapp setup mode for test/tap/registry.js
12+
# only gather coverage info for LTS
13+
env: DEPLOY_VERSION=testing COVERALLS_REPO_TOKEN="$COVERALLS_OPTIONAL_TOKEN"
14+
# next LTS and master is next most important
15+
- node_js: "6"
16+
env: DEPLOY_VERSION=testing
17+
# still in LTS maintenance until fall 2016 (also still in wide use)
18+
- node_js: "0.10"
19+
env: DEPLOY_VERSION=testing
20+
# will be unsupported as soon as 6 becomes LTS and 7 released
21+
- node_js: "5"
22+
env: DEPLOY_VERSION=testing
23+
# technically in LTS / distros, unbeloved
24+
- node_js: "0.12"
25+
env: DEPLOY_VERSION=testing
1726
before_install:
18-
- "npm config set spin false"
19-
- "npm install -g npm/npm#lts"
27+
# explicitly install rimraf for LTS self-install
28+
- "npm install -g rimraf"
29+
- "node . install -g ."
30+
# required by test/tap/registry.js
2031
- "mkdir -p /var/run/couchdb"
21-
script: "npm test"
2232
notifications:
2333
slack: npm-inc:kRqQjto7YbINqHPb1X6nS3g8

deps/npm/AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -368,3 +368,5 @@ André Herculano <[email protected]>
368368
Wyatt Preul <[email protected]>
369369
Gianluca Casati <[email protected]>
370370
Tapani Moilanen <[email protected]>
371+
Simon MacDonald <[email protected]>
372+
Adam Stankiewicz <[email protected]>

deps/npm/CHANGELOG.md

+45-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,50 @@
1+
### v2.15.9 (2016-06-30):
2+
3+
What's this? An LTS release? Yes, that is indeed so. Small, as usual, and as
4+
LTSs should be, really, but a release nonetheless!
5+
6+
The star of the show is an updated `node-gyp` with some goodies. The rest is
7+
just docs and some CI stuff.
8+
9+
Happy hacking!
10+
11+
#### DEPENDENCY UPDATE!
12+
13+
* [`f9a07cc`](https://github.com/npm/npm/commit/f9a07cc873f1915827d8df97d0c43204d1eb128c)
14+
[#13200](https://github.com/npm/npm/pull/13200)
15+
[`[email protected]`](https://github.com/nodejs/node-gyp/blob/master/CHANGELOG.md):
16+
AIX, Visual Studio 2015, and logging improvements. Oh my~!
17+
([@rvagg](https://github.com/rvagg))
18+
19+
#### CI TWEAKS
20+
21+
* [`bee83b8`](https://github.com/npm/npm/commit/bee83b8500c31aba65451dfcb082f9b5d1d5ce34)
22+
Globally install `rimraf` on CI to make the LTS self-install work better.
23+
([@othiym23](https://github.com/othiym23))
24+
* [`6b8c0ab`](https://github.com/npm/npm/commit/6b8c0ab6fcbf8a37e8693acb8bbac22293b10893)
25+
This new Travis configuration only runs coverage checks against Node.js LTS,
26+
which speeds up all the other test runs. By, like, a lot. Also, the entire
27+
file has been extensively commented, so the next time we need to mess with it,
28+
we'll be able to better remember why all the weird bits are there.
29+
([@othiym23](https://github.com/othiym23))
30+
31+
#### DOCUMENTATION FIXES
32+
33+
* [`2c7a5be`](https://github.com/npm/npm/commit/2c7a5be080276e3fdca3375ab0f8f5edffff753e)
34+
[#13156](https://github.com/npm/npm/pull/13156)
35+
Fix old reference to `doc/install` in a source comment.
36+
([@sheerun](https://github.com/sheerun))
37+
* [`e1cf78c`](https://github.com/npm/npm/commit/e1cf78c5b77f95383bd4a7fc6eeb8adbbe68e12e)
38+
[#13189](https://github.com/npm/npm/pull/13189)
39+
[#13113](https://github.com/npm/npm/issues/13113)
40+
[#13189](https://github.com/npm/npm/pull/13189)
41+
Fixes a link to `npm-tag(3)` that was breaking to instead point to
42+
`npm-dist-tag(1)`, as reported by [@SimenB](https://github.com/SimenB)
43+
([@macdonst](https://github.com/macdonst))
44+
145
### v2.15.8 (2016-06-17):
246

3-
There's a very important bug fix and a long-awaited (and signifcant!)
47+
There's a very important bug fix and a long-awaited (and significant!)
448
deprecation in this hotfix release. [Hold on.](http://butt.holdings/)
549

650
#### *WHOA*

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@ that do not begin with a number or the letter `v`.
5656
* npm-registry(7)
5757
* npm-config(1)
5858
* npm-config(7)
59-
* npm-tag(3)
59+
* npm-dist-tag(1)
6060
* npmrc(5)

deps/npm/html/doc/README.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,5 @@ <h2 id="see-also">SEE ALSO</h2>
127127
<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>
128128
<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>
129129
</table>
130-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].8</p>
130+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].9</p>
131131

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; [email protected].8</p>
31+
<p id="footer">npm-bin &mdash; [email protected].9</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; [email protected].8</p>
36+
<p id="footer">npm-bugs &mdash; [email protected].9</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; [email protected].8</p>
45+
<p id="footer">npm-cache &mdash; [email protected].9</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; [email protected].8</p>
39+
<p id="footer">npm-commands &mdash; [email protected].9</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; [email protected].8</p>
60+
<p id="footer">npm-config &mdash; [email protected].9</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; [email protected].8</p>
50+
<p id="footer">npm-deprecate &mdash; [email protected].9</p>
5151

deps/npm/html/doc/api/npm-docs.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-docs &mdash; [email protected].8</p>
36+
<p id="footer">npm-docs &mdash; [email protected].9</p>
3737

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ <h2 id="synopsis">SYNOPSIS</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-edit &mdash; [email protected].8</p>
39+
<p id="footer">npm-edit &mdash; [email protected].9</p>
4040

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3131
<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>
3232
<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>
3333
</table>
34-
<p id="footer">npm-explore &mdash; [email protected].8</p>
34+
<p id="footer">npm-explore &mdash; [email protected].9</p>
3535

deps/npm/html/doc/api/npm-help-search.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
4444
<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>
4545
<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>
4646
</table>
47-
<p id="footer">npm-help-search &mdash; [email protected].8</p>
47+
<p id="footer">npm-help-search &mdash; [email protected].9</p>
4848

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ <h2 id="see-also">SEE ALSO</h2>
3939
<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>
4040
<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>
4141
</table>
42-
<p id="footer">npm-init &mdash; [email protected].8</p>
42+
<p id="footer">npm-init &mdash; [email protected].9</p>
4343

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3232
<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>
3333
<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>
3434
</table>
35-
<p id="footer">npm-install &mdash; [email protected].8</p>
35+
<p id="footer">npm-install &mdash; [email protected].9</p>
3636

deps/npm/html/doc/api/npm-link.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-link &mdash; [email protected].8</p>
45+
<p id="footer">npm-link &mdash; [email protected].9</p>
4646

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3737
<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>
3838
<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>
3939
</table>
40-
<p id="footer">npm-load &mdash; [email protected].8</p>
40+
<p id="footer">npm-load &mdash; [email protected].9</p>
4141

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ <h3 id="global">global</h3>
6363
<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>
6464
<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>
6565
</table>
66-
<p id="footer">npm-ls &mdash; [email protected].8</p>
66+
<p id="footer">npm-ls &mdash; [email protected].9</p>
6767

deps/npm/html/doc/api/npm-outdated.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-outdated &mdash; [email protected].8</p>
31+
<p id="footer">npm-outdated &mdash; [email protected].9</p>
3232

deps/npm/html/doc/api/npm-owner.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-owner &mdash; [email protected].8</p>
50+
<p id="footer">npm-owner &mdash; [email protected].9</p>
5151

deps/npm/html/doc/api/npm-pack.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-pack &mdash; [email protected].8</p>
36+
<p id="footer">npm-pack &mdash; [email protected].9</p>
3737

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ <h2 id="synopsis">SYNOPSIS</h2>
2929
<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>
3030
<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>
3131
</table>
32-
<p id="footer">npm-ping &mdash; [email protected].8</p>
32+
<p id="footer">npm-ping &mdash; [email protected].9</p>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
2929
<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>
3030
<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>
3131
</table>
32-
<p id="footer">npm-prefix &mdash; [email protected].8</p>
32+
<p id="footer">npm-prefix &mdash; [email protected].9</p>
3333

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3030
<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>
3131
<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>
3232
</table>
33-
<p id="footer">npm-prune &mdash; [email protected].8</p>
33+
<p id="footer">npm-prune &mdash; [email protected].9</p>
3434

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ <h2 id="see-also">SEE ALSO</h2>
4646
<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>
4747
<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>
4848
</table>
49-
<p id="footer">npm-publish &mdash; [email protected].8</p>
49+
<p id="footer">npm-publish &mdash; [email protected].9</p>
5050

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ <h2 id="configuration">CONFIGURATION</h2>
3030
<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>
3131
<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>
3232
</table>
33-
<p id="footer">npm-rebuild &mdash; [email protected].8</p>
33+
<p id="footer">npm-rebuild &mdash; [email protected].9</p>
3434

deps/npm/html/doc/api/npm-repo.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-repo &mdash; [email protected].8</p>
36+
<p id="footer">npm-repo &mdash; [email protected].9</p>
3737

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@ <h2 id="see-also">SEE ALSO</h2>
5252
<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>
5353
<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>
5454
</table>
55-
<p id="footer">npm-restart &mdash; [email protected].8</p>
55+
<p id="footer">npm-restart &mdash; [email protected].9</p>
5656

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
2929
<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>
3030
<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>
3131
</table>
32-
<p id="footer">npm-root &mdash; [email protected].8</p>
32+
<p id="footer">npm-root &mdash; [email protected].9</p>
3333

0 commit comments

Comments
 (0)