Skip to content

Commit 9dc8f59

Browse files
othiym23bnoordhuis
authored andcommitted
deps: upgrade npm to 2.2.0
PR-URL: #479 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Rod Vagg <[email protected]>
1 parent e8ad773 commit 9dc8f59

File tree

194 files changed

+1106
-1184
lines changed

Some content is hidden

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

194 files changed

+1106
-1184
lines changed

deps/npm/CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
### v2.2.0 (2015-01-08):
2+
3+
* [`88c531d`](https://github.com/npm/npm/commit/88c531d1c0b3aced8f2a09632db01b5635e7226a)
4+
[#7056](https://github.com/npm/npm/issues/7056) version doesn't need a
5+
package.json. ([@othiym23](https://github.com/othiym23))
6+
* [`2656c19`](https://github.com/npm/npm/commit/2656c19f6b915c3173acc3b6f184cc321563da5f)
7+
[#7095](https://github.com/npm/npm/issues/7095) Link to npm website instead
8+
of registry. ([@konklone](https://github.com/konklone))
9+
* [`c76b801`](https://github.com/npm/npm/commit/c76b8013bf1758587565822626171b76cb465c9e)
10+
[#7067](https://github.com/npm/npm/issues/7067) Obfuscate secrets, including
11+
nerfed URLs. ([@smikes](https://github.com/smikes))
12+
* [`17f66ce`](https://github.com/npm/npm/commit/17f66ceb1bd421084e4ae82a6b66634a6e272929)
13+
[#6849](https://github.com/npm/npm/issues/6849) Explain the tag workflow more
14+
clearly. ([@smikes](https://github.com/smikes))
15+
* [`e309df6`](https://github.com/npm/npm/commit/e309df642de33d10d6dffadaa8a5d214a924d0dc)
16+
[#7096](https://github.com/npm/npm/issues/7096) Really, `npm update -g` is
17+
almost always a terrible idea. ([@smikes](https://github.com/smikes))
18+
* [`acf287d`](https://github.com/npm/npm/commit/acf287d2547c8a0a8871652c164019261b666d55)
19+
[#6999](https://github.com/npm/npm/issues/6999) `npm run-script env`: add a
20+
new default script that will print out environment values.
21+
([@gcb](https://github.com/gcb))
22+
* [`560c009`](https://github.com/npm/npm/commit/560c00945d4dec926cd29193e336f137c7f3f951)
23+
[#6745](https://github.com/npm/npm/issues/6745) Document `npm update --dev`.
24+
([@smikes](https://github.com/smikes))
25+
* [`226a677`](https://github.com/npm/npm/commit/226a6776a1a9e28570485623b8adc2ec4b041335)
26+
[#7046](https://github.com/npm/npm/issues/7046) We have never been the Node
27+
package manager. ([@linclark](https://github.com/linclark))
28+
* [`38eef22`](https://github.com/npm/npm/commit/38eef2248f03bb8ab04cae1833e2a228fb887f3c)
29+
`[email protected]`: Compatibility with npmlog@^1.
30+
([@iarna](https://github.com/iarna))
31+
132
### v2.1.18 (2015-01-01):
233

334
* [`bf8640b`](https://github.com/npm/npm/commit/bf8640b0395b5dff71260a0cede7efc699a7bcf5)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ is the package name and version is the version number (much like installing a
1818
specific version).
1919

2020
The second element is the name of the tag to tag this version with. If this
21-
parameter is missing or falsey (empty), the default froom the config will be
21+
parameter is missing or falsey (empty), the default from the config will be
2222
used. For more information about how to set this config, check
2323
`man 3 npm-config` for programmatic usage or `man npm-config` for cli usage.

deps/npm/doc/api/npm.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
npm(3) -- node package manager
2-
==============================
1+
npm(3) -- javascript package manager
2+
====================================
33

44
## SYNOPSIS
55

deps/npm/doc/cli/npm-run-script.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@ npm-run-script(1) -- Run arbitrary package scripts
1111
This runs an arbitrary command from a package's `"scripts"` object.
1212
If no package name is provided, it will search for a `package.json`
1313
in the current folder and use its `"scripts"` object. If no `"command"`
14-
is provided, it will list the available top level scripts.
14+
is provided, it will list the available top level scripts. The `env` command
15+
can be used to list environment variables that will be available to the script
16+
at runtime. If an "env" command is defined in your package it will have
17+
precedence instead.
1518

16-
It is used by the test, start, restart, and stop commands, but can be
17-
called directly, as well.
19+
`run[-script]` is used by the test, start, restart, and stop commands, but can
20+
be called directly, as well.
1821

1922
As of [`[email protected]`](http://blog.npmjs.org/post/98131109725/npm-2-0-0), you can
2023
use custom arguments when executing scripts. The special option `--` is used by

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

+24
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,29 @@ This also applies to `npm dedupe`.
2323

2424
Publishing a package always sets the "latest" tag to the published version.
2525

26+
## PURPOSE
27+
28+
Tags can be used to provide an alias instead of version numbers. For
29+
example, `npm` currently uses the tag "next" to identify the upcoming
30+
version, and the tag "latest" to identify the current version.
31+
32+
A project might choose to have multiple streams of development, e.g.,
33+
"stable", "canary".
34+
35+
## CAVEATS
36+
37+
Tags must share a namespace with version numbers, because they are
38+
specified in the same slot: `npm install <pkg>@<version>` vs `npm
39+
install <pkg>@<tag>`.
40+
41+
Tags that can be interpreted as valid semver ranges will be
42+
rejected. For example, `v1.4` cannot be used as a tag, because it is
43+
interpreted by semver as `>=1.4.0 <1.5.0`. See
44+
<https://github.com/npm/npm/issues/6082>.
45+
46+
The simplest way to avoid semver problems with tags is to use tags
47+
that do not begin with a number or the letter `v`.
48+
2649
## SEE ALSO
2750

2851
* npm-publish(1)
@@ -31,4 +54,5 @@ Publishing a package always sets the "latest" tag to the published version.
3154
* npm-registry(7)
3255
* npm-config(1)
3356
* npm-config(7)
57+
* npm-tag(3)
3458
* npmrc(5)

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ npm-update(1) -- Update a package
1010
This command will update all the packages listed to the latest version
1111
(specified by the `tag` config).
1212

13-
It will also install missing packages.
13+
It will also install missing packages. As with all commands that install
14+
packages, the `--dev` flag will cause `devDependencies` to be processed
15+
as well.
1416

1517
If the `-g` flag is specified, this command will update globally installed
1618
packages.

deps/npm/doc/cli/npm.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
npm(1) -- node package manager
2-
==============================
1+
npm(1) -- javascript package manager
2+
====================================
33

44
## SYNOPSIS
55

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The name is what your thing is called. Some tips:
2828
* The name will probably be passed as an argument to require(), so it should
2929
be something short, but also reasonably descriptive.
3030
* You may want to check the npm registry to see if there's something by that name
31-
already, before you get too attached to it. http://registry.npmjs.org/
31+
already, before you get too attached to it. <https://www.npmjs.com/>
3232

3333
A name can be optionally prefixed by a scope, e.g. `@myorg/mypackage`. See
3434
`npm-scope(7)` for more detail.

deps/npm/doc/misc/npm-index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Using npm on the command line
1111

1212
### npm(1)
1313

14-
node package manager
14+
javascript package manager
1515

1616
### npm-adduser(1)
1717

@@ -199,7 +199,7 @@ Using npm in your Node programs
199199

200200
### npm(3)
201201

202-
node package manager
202+
javascript package manager
203203

204204
### npm-bin(3)
205205

deps/npm/html/doc/README.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ <h2 id="legal-stuff">Legal Stuff</h2>
126126
<p>If you have a complaint about a package in the public npm registry,
127127
and cannot <a href="https://docs.npmjs.com/misc/disputes">resolve it with the package
128128
owner</a>, please email
129-
<a href="&#x6d;&#x61;&#105;&#x6c;&#116;&#111;&#x3a;&#x73;&#x75;&#x70;&#x70;&#111;&#114;&#x74;&#64;&#110;&#x70;&#x6d;&#x6a;&#x73;&#x2e;&#99;&#x6f;&#x6d;">&#x73;&#x75;&#x70;&#x70;&#111;&#114;&#x74;&#64;&#110;&#x70;&#x6d;&#x6a;&#x73;&#x2e;&#99;&#x6f;&#x6d;</a> and explain the situation.</p>
129+
<a href="&#x6d;&#x61;&#105;&#x6c;&#116;&#111;&#x3a;&#115;&#117;&#x70;&#112;&#x6f;&#114;&#116;&#x40;&#110;&#x70;&#x6d;&#x6a;&#115;&#x2e;&#x63;&#111;&#x6d;">&#115;&#117;&#x70;&#112;&#x6f;&#114;&#116;&#x40;&#110;&#x70;&#x6d;&#x6a;&#115;&#x2e;&#x63;&#111;&#x6d;</a> and explain the situation.</p>
130130
<p>Any data published to The npm Registry (including user account
131131
information) may be removed or modified at the sole discretion of the
132132
npm server administrators.</p>
@@ -169,5 +169,5 @@ <h2 id="see-also">SEE ALSO</h2>
169169
<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>
170170
<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>
171171
</table>
172-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@2.1.18</p>
172+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@2.2.0</p>
173173

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.1.18</p>
31+
<p id="footer">npm-bin &mdash; npm@2.2.0</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.1.18</p>
36+
<p id="footer">npm-bugs &mdash; npm@2.2.0</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.1.18</p>
45+
<p id="footer">npm-cache &mdash; npm@2.2.0</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.1.18</p>
39+
<p id="footer">npm-commands &mdash; npm@2.2.0</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.1.18</p>
60+
<p id="footer">npm-config &mdash; npm@2.2.0</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.1.18</p>
50+
<p id="footer">npm-deprecate &mdash; npm@2.2.0</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; npm@2.1.18</p>
36+
<p id="footer">npm-docs &mdash; npm@2.2.0</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; npm@2.1.18</p>
39+
<p id="footer">npm-edit &mdash; npm@2.2.0</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; npm@2.1.18</p>
34+
<p id="footer">npm-explore &mdash; npm@2.2.0</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; npm@2.1.18</p>
47+
<p id="footer">npm-help-search &mdash; npm@2.2.0</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; npm@2.1.18</p>
42+
<p id="footer">npm-init &mdash; npm@2.2.0</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; npm@2.1.18</p>
35+
<p id="footer">npm-install &mdash; npm@2.2.0</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; npm@2.1.18</p>
45+
<p id="footer">npm-link &mdash; npm@2.2.0</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; npm@2.1.18</p>
40+
<p id="footer">npm-load &mdash; npm@2.2.0</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; npm@2.1.18</p>
66+
<p id="footer">npm-ls &mdash; npm@2.2.0</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; npm@2.1.18</p>
31+
<p id="footer">npm-outdated &mdash; npm@2.2.0</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; npm@2.1.18</p>
50+
<p id="footer">npm-owner &mdash; npm@2.2.0</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; npm@2.1.18</p>
36+
<p id="footer">npm-pack &mdash; npm@2.2.0</p>
3737

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; npm@2.1.18</p>
32+
<p id="footer">npm-prefix &mdash; npm@2.2.0</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; npm@2.1.18</p>
33+
<p id="footer">npm-prune &mdash; npm@2.2.0</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; npm@2.1.18</p>
49+
<p id="footer">npm-publish &mdash; npm@2.2.0</p>
5050

0 commit comments

Comments
 (0)