Skip to content

Commit b07b413

Browse files
zkatMyles Borins
authored and
Myles Borins
committed
deps: upgrade to npm 2.14.20
PR-URL: #5510 Review-by: Myles Borins <[email protected]>
1 parent 9472923 commit b07b413

File tree

1,275 files changed

+13737
-11020
lines changed

Some content is hidden

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

1,275 files changed

+13737
-11020
lines changed

deps/npm/AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -343,3 +343,4 @@ Jonathan Persson <[email protected]>
343343
Vedat Mahir YILMAZ <[email protected]>
344344
Jan Schär <[email protected]>
345345
346+
Neil Kistner <[email protected]>

deps/npm/CHANGELOG.md

+63
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,66 @@
1+
### v2.14.20 (2016-02-18):
2+
3+
Hope y'all are having a nice week! As usual, it's a fairly limited release. The
4+
most notable thing is some dependency updates that might help the Node.js CI
5+
setup for Windows run a little better, even if we have some work to do on that
6+
path length things, still.
7+
8+
#### WHITTLING AWAY AT PATH LENGTHS
9+
10+
So for all of you who don't know -- Node.js does, in fact, support long Windows
11+
paths. Unfortunately, depending on the tool and the Windows version, a lot of
12+
external tooling does not. This means, for example, that some (all?) versions of
13+
Windows Explorer *can literally never delete npm from their system entirely
14+
because of deeply-nested npm dependencies*. Which is pretty gnarly.
15+
16+
Incidentally, if you run into that in particularly, you can use
17+
[rimraf](npm.im/rimraf) to remove such files 💁.
18+
19+
The latest victim of this issue was the Node.js CI setup for testing on Windows,
20+
which uses some tooling or another that croaks on the usual path length limit
21+
for that OS: 255 characters.
22+
23+
This issue, of course, is largely not a problem as of `npm@3`, with its flat
24+
trees, but it still occasionally and viciously bites LTS.
25+
26+
We've taken another baby step towards alleviating this in this release by
27+
updating a couple of dependencies that were preventing `npmlog` from deduping,
28+
and then doing a dedupe on that and `gauge`. Hopefully it helps.
29+
30+
* [`4199551`](https://github.com/npm/npm/commit/41995517e617674710748ab6d262670c96124393)
31+
[#11528](https://github.com/npm/npm/pull/11528)
32+
`[email protected]`: Just updates the version of npmlog so we can
33+
dedupe it better.
34+
([@zkat](https://github.com/zkat))
35+
* [`14d72c7`](https://github.com/npm/npm/commit/14d72c756b89e2d167eb52c1849263dbddcb9f35)
36+
[#11552](https://github.com/npm/npm/pull/11552)
37+
[#11528](https://github.com/npm/npm/pull/11528)
38+
`[email protected]`: AIX support, new `gyp`, update `npmlog` (for the dedupe),
39+
adds `--cafile` command line option, and allows configuration of Node.js and
40+
io.js mirrors.
41+
([@rvagg](https://github.com/rvagg))
42+
* [`0453cb9`](https://github.com/npm/npm/commit/0453cb94b33520eb723b7072cd2654b1d0142533)
43+
[#11528](https://github.com/npm/npm/pull/11528)
44+
Do a `dedupe` on `gauge` to flatten our dependencies a bit more.
45+
([@zkat](https://github.com/zkat))
46+
47+
#### OTHER DEP STUFF
48+
49+
* [`686c0b3`](https://github.com/npm/npm/commit/686c0b37ec3a7b65f9b3849e1099805e5221c408)
50+
`[email protected]`: Just updates to glob@7.
51+
([@isaacs](https://github.com/isaacs))
52+
53+
#### @wyze, DOCUMENTATION HERO OF THE PEOPLE, GETS THEIR OWN HEADER
54+
55+
* [`7232948`](https://github.com/npm/npm/commit/72329484c775376cb40d5b348f453eaaf2f0b821)
56+
[#11416](https://github.com/npm/npm/pull/11416)
57+
Logout docs were using a section copy-pasted from the adduser docs.
58+
([@wyze](https://github.com/wyze))
59+
* [`922b33a`](https://github.com/npm/npm/commit/922b33aba4362e1e90f42e9348f061a1cc73eafb)
60+
[#11414](https://github.com/npm/npm/pull/11414)
61+
Add colon for consistency.
62+
([@wyze](https://github.com/wyze))
63+
164
### v2.14.19 (2016-02-11):
265

366
Really tiny micro-release this week! The main thing to note is a dependency

deps/npm/doc/cli/npm-help-search.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ command directly.
2121
### long
2222

2323
* Type: Boolean
24-
* Default false
24+
* Default: false
2525

2626
If true, the "long" flag will cause help-search to output context around
2727
where the terms were found in the documentation.

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

+2-7
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,9 @@ it takes precedence.
3131

3232
Default: none
3333

34-
If specified, the user and login credentials given will be associated
35-
with the specified scope. See `npm-scope(7)`. You can use both at the same time,
36-
e.g.
34+
If specified, you will be logged out of the specified scope. See `npm-scope(7)`.
3735

38-
npm adduser --registry=http://myregistry.example.com --scope=@myco
39-
40-
This will set a registry for the given scope and login or create a user for
41-
that registry at the same time.
36+
npm logout --scope=@myco
4237

4338
## SEE ALSO
4439

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].19</p>
130+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].20</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].19</p>
31+
<p id="footer">npm-bin &mdash; [email protected].20</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].19</p>
36+
<p id="footer">npm-bugs &mdash; [email protected].20</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].19</p>
45+
<p id="footer">npm-cache &mdash; [email protected].20</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].19</p>
39+
<p id="footer">npm-commands &mdash; [email protected].20</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].19</p>
60+
<p id="footer">npm-config &mdash; [email protected].20</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].19</p>
50+
<p id="footer">npm-deprecate &mdash; [email protected].20</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].19</p>
36+
<p id="footer">npm-docs &mdash; [email protected].20</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].19</p>
39+
<p id="footer">npm-edit &mdash; [email protected].20</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].19</p>
34+
<p id="footer">npm-explore &mdash; [email protected].20</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].19</p>
47+
<p id="footer">npm-help-search &mdash; [email protected].20</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].19</p>
42+
<p id="footer">npm-init &mdash; [email protected].20</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].19</p>
35+
<p id="footer">npm-install &mdash; [email protected].20</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].19</p>
45+
<p id="footer">npm-link &mdash; [email protected].20</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].19</p>
40+
<p id="footer">npm-load &mdash; [email protected].20</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].19</p>
66+
<p id="footer">npm-ls &mdash; [email protected].20</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].19</p>
31+
<p id="footer">npm-outdated &mdash; [email protected].20</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].19</p>
50+
<p id="footer">npm-owner &mdash; [email protected].20</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].19</p>
36+
<p id="footer">npm-pack &mdash; [email protected].20</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].19</p>
32+
<p id="footer">npm-ping &mdash; [email protected].20</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].19</p>
32+
<p id="footer">npm-prefix &mdash; [email protected].20</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].19</p>
33+
<p id="footer">npm-prune &mdash; [email protected].20</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].19</p>
49+
<p id="footer">npm-publish &mdash; [email protected].20</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].19</p>
33+
<p id="footer">npm-rebuild &mdash; [email protected].20</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].19</p>
36+
<p id="footer">npm-repo &mdash; [email protected].20</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].19</p>
55+
<p id="footer">npm-restart &mdash; [email protected].20</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].19</p>
32+
<p id="footer">npm-root &mdash; [email protected].20</p>
3333

0 commit comments

Comments
 (0)