Skip to content

Commit 524b083

Browse files
zkatMyles Borins
authored and
Myles Borins
committed
deps: upgrade to npm 2.14.17
PR-URL: #5110 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Myles Borins <[email protected]>
1 parent 890e2ba commit 524b083

File tree

239 files changed

+983
-341
lines changed

Some content is hidden

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

239 files changed

+983
-341
lines changed

deps/npm/AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,3 +338,7 @@ Jimb Esser <[email protected]>
338338
Hal Henke <[email protected]>
339339
Alexis Campailla <[email protected]>
340340
Beau Gunderson <[email protected]>
341+
342+
Jonathan Persson <[email protected]>
343+
Vedat Mahir YILMAZ <[email protected]>
344+
Jan Schär <[email protected]>

deps/npm/CHANGELOG.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,55 @@
1+
### v2.14.17 (2016-01-28):
2+
3+
Another week, another small LTS release!
4+
5+
#### BETTER ERROR REPORTING YAY
6+
7+
So as it turns out, when stuff goes wrong, it's actually nice to give people a
8+
better clue rather than just say "oh well 😏".
9+
10+
* [`5b8ccb9`](https://github.com/npm/npm/commit/5b8ccb91cf11b4edb463609cd4ed1dee84ed4db0)
11+
[#11289](https://github.com/npm/npm/pull/11289)
12+
There is an obscure feature that lets you monkey-patch npm when it starts up.
13+
If the module being required with this feature failed, it would previous just
14+
make npm error out– this reduces that to a warning.
15+
([@evanlucas](https://github.com/evanlucas))
16+
* [`556e42a`](https://github.com/npm/npm/commit/556e42ac6bab078722ddc1dc6cce4428d001133b)
17+
[#11300](https://github.com/npm/npm/pull/11300)
18+
Report symlinked packages as 'linked' in the output for `npm outdated`.
19+
([@halhenke](https://github.com/halhenke))
20+
* [`3842317`](https://github.com/npm/npm/commit/3842317583e0ea2eca78e39aa03f5bc06ba21de7)
21+
[#11290](https://github.com/npm/npm/pull/11290)
22+
Suppress warnings about pre-release node versions. This should get node's CI
23+
passing on non-Windows platforms without needing to modify the node version to
24+
get rid of the pre-release suffix.
25+
([@iarna](https://github.com/iarna))
26+
27+
#### EVERYONE WANTS THOSE NPM SOCKS, GEEZE
28+
29+
Did you know that you can get npm socks for contributing to our docs? I bet
30+
these people do, and now so do you!
31+
32+
* [`dcde451`](https://github.com/npm/npm/commit/dcde451cb85a6ca08acc6ef45782c652f1d8fc89)
33+
[#11232](https://github.com/npm/npm/pull/11232)
34+
Update automatically included/excluded packages in `package.json`.
35+
([@jscissr](https://github.com/jscissr))
36+
* [`e3f8d5b`](https://github.com/npm/npm/commit/e3f8d5be5ac5ec1d72db42f7abf50cc4a8c5935c)
37+
[#11273](https://github.com/npm/npm/pull/11273)
38+
Add an example for `npm view <pkg> versions`.
39+
([@vedatmahir](https://github.com/vedatmahir))
40+
* [`6a06ef2`](https://github.com/npm/npm/commit/6a06ef2252748089f0013de951f2d06160b90306)
41+
[#11272](https://github.com/npm/npm/pull/11272)
42+
Fix a typo in `npm-update.md`.
43+
([@jonathanp](https://github.com/jonathanp))
44+
* [`2515ff1`](https://github.com/npm/npm/commit/2515ff1de28f0b261fb25c79a66bd762a65961c4)
45+
[#11215](https://github.com/npm/npm/pull/11215)
46+
Correct small thinko in docs for SPDX expressions.
47+
([@kemitchell](https://github.com/kemitchell))
48+
* [`70f897b`](https://github.com/npm/npm/commit/70f897b03da9a5d5d4fd34614e9ee40e6f9e9653)
49+
[#11196](https://github.com/npm/npm/pull/11196)
50+
Make JSON snippets valid JSON in `npm update` docs.
51+
([@s100](https://github.com/s100))
52+
153
### v2.14.16 (2016-01-21):
254

355
Good to see you all again! It's been a while since we had an LTS release, and

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,12 @@ In the output:
3232

3333
```
3434
$ npm outdated
35-
Package Current Wanted Latest Location
36-
glob 5.0.15 5.0.15 6.0.1 test-outdated-output
37-
nothingness 0.0.3 git git test-outdated-output
38-
npm 3.5.1 3.5.2 3.5.1 test-outdated-output
39-
once 1.3.2 1.3.3 1.3.3 test-outdated-output
35+
Package Current Wanted Latest Location
36+
glob 5.0.15 5.0.15 6.0.1 test-outdated-output
37+
nothingness 0.0.3 git git test-outdated-output
38+
npm 3.5.1 3.5.2 3.5.1 test-outdated-output
39+
local-dev 0.0.3 linked linked test-outdated-output
40+
once 1.3.2 1.3.3 1.3.3 test-outdated-output
4041
```
4142

4243
With these `dependencies`:

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

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,17 @@ on dependencies, `dep1` (`dep2`, .. etc.). The published versions of `dep1` are
4444

4545
```
4646
{
47-
dist-tags: { latest: "1.2.2" },
48-
versions: { "1.2.2",
49-
"1.2.1",
50-
"1.2.0",
51-
"1.1.2",
52-
"1.1.1",
53-
"1.0.0",
54-
"0.4.1",
55-
"0.4.0",
56-
"0.2.0"
47+
"dist-tags": { "latest": "1.2.2" },
48+
"versions": {
49+
"1.2.2",
50+
"1.2.1",
51+
"1.2.0",
52+
"1.1.2",
53+
"1.1.1",
54+
"1.0.0",
55+
"0.4.1",
56+
"0.4.0",
57+
"0.2.0"
5758
}
5859
}
5960
```
@@ -63,8 +64,8 @@ on dependencies, `dep1` (`dep2`, .. etc.). The published versions of `dep1` are
6364
If `app`'s `package.json` contains:
6465

6566
```
66-
dependencies: {
67-
dep1: "^1.1.1"
67+
"dependencies": {
68+
"dep1": "^1.1.1"
6869
}
6970
```
7071

@@ -76,8 +77,8 @@ Then `npm update` will install `[email protected]`, because `1.2.2` is `latest` and
7677
However, if `app`'s `package.json` contains:
7778

7879
```
79-
dependencies: {
80-
dep1: "~1.1.1"
80+
"dependencies": {
81+
"dep1": "~1.1.1"
8182
}
8283
```
8384

@@ -91,8 +92,8 @@ which is `1.1.2`.
9192
Suppose `app` has a caret dependency on a version below `1.0.0`, for example:
9293

9394
```
94-
dependencies: {
95-
dep1: "^0.2.0"
95+
"dependencies": {
96+
"dep1": "^0.2.0"
9697
}
9798
```
9899

@@ -102,8 +103,8 @@ versions which satisfy `^0.2.0`.
102103
If the dependence were on `^0.4.0`:
103104

104105
```
105-
dependencies: {
106-
dep1: "^0.4.0"
106+
"dependencies": {
107+
"dep1": "^0.4.0"
107108
}
108109
```
109110

@@ -117,17 +118,17 @@ the minimum required dependency in `package.json`, you can use
117118
`npm update --save`. For example if `package.json` contains
118119

119120
```
120-
dependencies: {
121-
dep1: "^1.1.1"
121+
"dependencies": {
122+
"dep1": "^1.1.1"
122123
}
123124
```
124125

125126
Then `npm update --save` will install `[email protected]` (i.e., `latest`),
126127
and `package.json` will be modified:
127128

128129
```
129-
dependencies: {
130-
dep1: "^1.2.2"
130+
"dependencies": {
131+
"dep1": "^1.2.2"
131132
}
132133
```
133134

@@ -136,7 +137,7 @@ if it installs a new package.
136137

137138
### Updating Globally-Installed Packages
138139

139-
`npm update -g` will apply the `update` action to each globally- installed
140+
`npm update -g` will apply the `update` action to each globally installed
140141
package that is `outdated` -- that is, has a version that is different from
141142
`latest`.
142143

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ was required by each matching version of yui3:
6666

6767
npm view yui3@'>0.5.4' dependencies.jsdom
6868

69+
To show the `connect` package version history, you can do
70+
this:
71+
72+
npm view connect versions
73+
6974
## OUTPUT
7075

7176
If only a single string field for a single version is output, then it

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ expression syntax version 2.0 string](https://npmjs.com/package/spdx), like this
113113
{ "license" : "(ISC OR GPL-3.0)" }
114114

115115
If you are using a license that hasn't been assigned an SPDX identifier, or if
116-
you are using a custom license, use the following valid SPDX expression:
116+
you are using a custom license, use a string value like this one:
117117

118118
{ "license" : "SEE LICENSE IN <filename>" }
119119

@@ -186,9 +186,10 @@ works just like a `.gitignore`.
186186
Certain files are always included, regardless of settings:
187187

188188
* `package.json`
189-
* `README` (and its variants)
190-
* `CHANGELOG` (and its variants)
189+
* `README`
190+
* `CHANGES` / `CHANGELOG` / `HISTORY` (any casing and file extension)
191191
* `LICENSE` / `LICENCE`
192+
* The file in the "main" field
192193

193194
Conversely, some files are always ignored:
194195

@@ -198,10 +199,11 @@ Conversely, some files are always ignored:
198199
* `.hg`
199200
* `.lock-wscript`
200201
* `.wafpickle-N`
201-
* `*.swp`
202+
* `.*.swp`
202203
* `.DS_Store`
203204
* `._*`
204205
* `npm-debug.log`
206+
* `.npmrc`
205207

206208
## main
207209

deps/npm/html/doc/README.html

Lines changed: 1 addition & 1 deletion
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].16</p>
130+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].17</p>
131131

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

Lines changed: 1 addition & 1 deletion
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].16</p>
31+
<p id="footer">npm-bin &mdash; [email protected].17</p>
3232

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

Lines changed: 1 addition & 1 deletion
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].16</p>
36+
<p id="footer">npm-bugs &mdash; [email protected].17</p>
3737

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

Lines changed: 1 addition & 1 deletion
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].16</p>
45+
<p id="footer">npm-cache &mdash; [email protected].17</p>
4646

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

Lines changed: 1 addition & 1 deletion
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].16</p>
39+
<p id="footer">npm-commands &mdash; [email protected].17</p>
4040

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

Lines changed: 1 addition & 1 deletion
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].16</p>
60+
<p id="footer">npm-config &mdash; [email protected].17</p>
6161

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

Lines changed: 1 addition & 1 deletion
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].16</p>
50+
<p id="footer">npm-deprecate &mdash; [email protected].17</p>
5151

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

Lines changed: 1 addition & 1 deletion
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].16</p>
36+
<p id="footer">npm-docs &mdash; [email protected].17</p>
3737

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

Lines changed: 1 addition & 1 deletion
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].16</p>
39+
<p id="footer">npm-edit &mdash; [email protected].17</p>
4040

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

Lines changed: 1 addition & 1 deletion
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].16</p>
34+
<p id="footer">npm-explore &mdash; [email protected].17</p>
3535

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

Lines changed: 1 addition & 1 deletion
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].16</p>
47+
<p id="footer">npm-help-search &mdash; [email protected].17</p>
4848

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

Lines changed: 1 addition & 1 deletion
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].16</p>
42+
<p id="footer">npm-init &mdash; [email protected].17</p>
4343

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

Lines changed: 1 addition & 1 deletion
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].16</p>
35+
<p id="footer">npm-install &mdash; [email protected].17</p>
3636

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

Lines changed: 1 addition & 1 deletion
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].16</p>
45+
<p id="footer">npm-link &mdash; [email protected].17</p>
4646

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

Lines changed: 1 addition & 1 deletion
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].16</p>
40+
<p id="footer">npm-load &mdash; [email protected].17</p>
4141

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

Lines changed: 1 addition & 1 deletion
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].16</p>
66+
<p id="footer">npm-ls &mdash; [email protected].17</p>
6767

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

Lines changed: 1 addition & 1 deletion
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].16</p>
31+
<p id="footer">npm-outdated &mdash; [email protected].17</p>
3232

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

Lines changed: 1 addition & 1 deletion
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].16</p>
50+
<p id="footer">npm-owner &mdash; [email protected].17</p>
5151

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

Lines changed: 1 addition & 1 deletion
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].16</p>
36+
<p id="footer">npm-pack &mdash; [email protected].17</p>
3737

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

Lines changed: 1 addition & 1 deletion
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].16</p>
32+
<p id="footer">npm-ping &mdash; [email protected].17</p>

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

Lines changed: 1 addition & 1 deletion
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].16</p>
32+
<p id="footer">npm-prefix &mdash; [email protected].17</p>
3333

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

Lines changed: 1 addition & 1 deletion
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].16</p>
33+
<p id="footer">npm-prune &mdash; [email protected].17</p>
3434

0 commit comments

Comments
 (0)