Skip to content

Commit ba0e744

Browse files
committed
deps: upgrade npm to 2.9.0
PR-URL: #1583 Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent b72e4bc commit ba0e744

File tree

282 files changed

+1648
-706
lines changed

Some content is hidden

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

282 files changed

+1648
-706
lines changed

deps/npm/AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -271,3 +271,4 @@ Michiel Sikma <[email protected]>
271271
Jakob Krigovsky <[email protected]>
272272
Charmander <[email protected]>
273273
erik wienhold <[email protected]>
274+
James Butler <[email protected]>

deps/npm/CHANGELOG.md

+74
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,77 @@
1+
### v2.9.0 (2015-04-23):
2+
3+
This week was kind of a breather to concentrate on fixing up the tests on the
4+
`multi-stage` branch, and not mess with git issues for a little while.
5+
Unfortunately, There are now enough severe git issues that we'll probably have
6+
to spend another couple weeks tackling them. In the meantime, enjoy these two
7+
small features. They're just enough to qualify for a semver-minor bump:
8+
9+
#### NANOFEATURES
10+
11+
* [`2799322`](https://github.com/npm/npm/commit/279932298ce5b589c5eea9439ac40b88b99c6a4a)
12+
[#7426](https://github.com/npm/npm/issues/7426) Include local modules in `npm
13+
outdated` and `npm update`. ([@ArnaudRinquin](https://github.com/ArnaudRinquin))
14+
* [`2114862`](https://github.com/npm/npm/commit/21148620fa03a582f4ec436bb16bd472664f2737)
15+
[#8014](https://github.com/npm/npm/issues/8014) The prefix used before the
16+
version on version tags is now configurable via `tag-version-prefix`. Be
17+
careful with this one and read the docs before using it.
18+
([@kkragenbrink](https://github.com/kkragenbrink))
19+
20+
#### OTHER MINOR TWEAKS
21+
22+
* [`18ce0ec`](https://github.com/npm/npm/commit/18ce0ecd2d94ad3af01e997f1396515892dd363c)
23+
[#3032](https://github.com/npm/npm/issues/3032) `npm unpublish` will now use
24+
the registry set in `package.json`, just like `npm publish`. This only
25+
applies, for now, when unpublishing the entire package, as unpublishing a
26+
single version requires the name be included on the command line and
27+
therefore doesn't read from `package.json`. ([@watilde](https://github.com/watilde))
28+
* [`9ad2100`](https://github.com/npm/npm/commit/9ad210042242e51d52b2a8b633d8e59248f5faa4)
29+
[#8008](https://github.com/npm/npm/issues/8008) Once again, when considering
30+
what to install on `npm install`, include `devDependencies`.
31+
([@smikes](https://github.com/smikes))
32+
* [`5466260`](https://github.com/npm/npm/commit/546626059909dca1906454e820ca4e315c1795bd)
33+
[#8003](https://github.com/npm/npm/issues/8003) Clarify the documentation
34+
around scopes to make it easier to understand how they support private
35+
packages. ([@smikes](https://github.com/smikes))
36+
37+
#### DEPENDENCIES WILL NOT STOP UNTIL YOU ARE VERY SLEEPY
38+
39+
* [`faf65a7`](https://github.com/npm/npm/commit/faf65a7bbb2fad13216f64ed8f1243bafe743f97)
40+
`[email protected]`: If there are multiple validation errors and
41+
warnings, ensure they all get displayed (includes a rad new way of testing
42+
`init-package-json` contributed by
43+
[@michaelnisi](https://github.com/michaelnisi)).
44+
([@MisumiRize](https://github.com/MisumiRize))
45+
* [`7f10f38`](https://github.com/npm/npm/commit/7f10f38d29a8423d7cde8103fa7b64ac728da1e0)
46+
`[email protected]`: `1.0.0` is literally more than `0.1.0` (no change aside from
47+
version number). ([@substack](https://github.com/substack))
48+
* [`4979af3`](https://github.com/npm/npm/commit/4979af3fcae5a3962383b7fdad3162381e62eefe)
49+
[#6805](https://github.com/npm/npm/issues/6805) `[email protected]`:
50+
Decode scoped package names sent by the registry so they look nicer.
51+
([@mmalecki](https://github.com/mmalecki))
52+
53+
### v2.8.4 (2015-04-16):
54+
55+
This is the fourth release of npm this week, so it's mostly just landing a few
56+
small outstanding PRs on dependencies and some tiny documentation tweaks.
57+
`[email protected]` is where the real action is.
58+
59+
* [`ee2bd77`](https://github.com/npm/npm/commit/ee2bd77f3c64d38735d1d31028224a5c40422a9b)
60+
[#7983](https://github.com/npm/npm/issues/7983) `[email protected]`: Better error
61+
reporting in corrupted tar files, and add support for the `fromBase` flag
62+
(rescued from the dustbin of history by
63+
[@deanmarano](https://github.com/deanmarano)).
64+
([@othiym23](https://github.com/othiym23))
65+
* [`d8eee6c`](https://github.com/npm/npm/commit/d8eee6cf9d2ff7aca68dfaed2de76824a3e0d9af)
66+
`[email protected]`: Add support for a default author, and only add
67+
scope to a package name once. ([@othiym23](https://github.com/othiym23))
68+
* [`4fc5d98`](https://github.com/npm/npm/commit/4fc5d98b785f601c60d4dc0a2c8674f0cccf6262)
69+
`[email protected]`: Small tweaks to cache value aging and entry counting that
70+
are irrelevant to npm. ([@isaacs](https://github.com/isaacs))
71+
* [`1fe5840`](https://github.com/npm/npm/commit/1fe584089f5bef133de5518aa26eaf6064be2bf7)
72+
[#7946](https://github.com/npm/npm/issues/7946) Make `npm init` text
73+
friendlier. ([@sandfox](https://github.com/sandfox))
74+
175
### v2.8.3 (2015-04-15):
276

377
#### TWO SMALL GIT TWEAKS

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

+14-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ npm-config(7) -- More than you probably want to know about npm configuration
33

44
## DESCRIPTION
55

6-
npm gets its configuration values from 6 sources, in this priority:
6+
npm gets its configuration values from the following sources, sorted by priority:
77

88
### Command Line Flags
99

@@ -804,6 +804,19 @@ it will install the specified tag.
804804
Also the tag that is added to the package@version specified by the `npm
805805
tag` command, if no explicit tag is given.
806806

807+
### tag-version-prefix
808+
809+
* Default: `"v"`
810+
* Type: String
811+
812+
If set, alters the prefix used when tagging a new version when performing a
813+
version increment using `npm-version`. To remove the prefix altogether, set it
814+
to the empty string: `""`.
815+
816+
Because other tools may rely on the convention that npm version tags look like
817+
`v1.0.0`, _only use this property if it is absolutely necessary_. In
818+
particular, use care when overriding this setting for public packages.
819+
807820
### tmp
808821

809822
* Default: TMPDIR environment variable, or "/tmp"

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

+28-8
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ followed by a slash, e.g.
1313
Scopes are a way of grouping related packages together, and also affect a few
1414
things about the way npm treats the package.
1515

16-
**As of 2014-09-03, scoped packages are not supported by the public npm registry**.
17-
However, the npm client is backwards-compatible with un-scoped registries, so
18-
it can be used to work with scoped and un-scoped registries at the same time.
16+
Scoped packages are supported by the public npm registry. The npm
17+
client is backwards-compatible with un-scoped registries, so it can be
18+
used to work with scoped and un-scoped registries at the same time.
1919

2020
## Installing scoped packages
2121

@@ -51,10 +51,29 @@ just specifying to require the module `mypackage` in the folder called `@myorg`.
5151

5252
## Publishing scoped packages
5353

54-
Scoped packages can be published to any registry that supports them.
55-
*As of 2014-09-03, the public npm registry does not support scoped packages*,
56-
so attempting to publish a scoped package to the registry will fail unless
57-
you have associated that scope with a different registry, see below.
54+
Scoped packages can be published to any registry that supports them, including
55+
the public npm registry.
56+
57+
(As of 2015-04-19, the public npm registry **does** support scoped packages)
58+
59+
If you wish, you may associate a scope with a registry; see below.
60+
61+
### Publishing public scoped packages to the public npm registry
62+
63+
To publish a public scoped package, you must specify `--access public` with
64+
the initial publication. This will publish the package and set access
65+
to `public` as if you had run `npm access public` after publishing.
66+
67+
### Publishing private scoped packages to the npm registry
68+
69+
To publish a private scoped package to the npm registry, you must have
70+
an [npm Private Modules](https://www.npmjs.com/private-modules)
71+
account.
72+
73+
You can then publish the module with `npm publish` or `npm publish
74+
--access restricted`, and it will be present in the npm registry, with
75+
restricted access. You can then change the access permissions, if
76+
desired, with `npm access` or on the npmjs.com website.
5877

5978
## Associating a scope with a registry
6079

@@ -81,4 +100,5 @@ that registry instead.
81100
## SEE ALSO
82101

83102
* npm-install(1)
84-
* npm-publish(1)
103+
* npm-publish(1)
104+
* npm-access(1)

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;&#x69;&#108;&#116;&#x6f;&#58;&#115;&#x75;&#112;&#112;&#x6f;&#x72;&#116;&#x40;&#x6e;&#112;&#x6d;&#x6a;&#115;&#x2e;&#x63;&#x6f;&#109;">&#115;&#x75;&#112;&#112;&#x6f;&#x72;&#116;&#x40;&#x6e;&#112;&#x6d;&#x6a;&#115;&#x2e;&#x63;&#x6f;&#109;</a> and explain the situation.</p>
129+
<a href="&#x6d;&#97;&#x69;&#x6c;&#x74;&#x6f;&#58;&#115;&#117;&#x70;&#112;&#x6f;&#114;&#116;&#x40;&#110;&#x70;&#x6d;&#x6a;&#115;&#x2e;&#x63;&#111;&#109;">&#115;&#117;&#x70;&#112;&#x6f;&#114;&#116;&#x40;&#110;&#x70;&#x6d;&#x6a;&#115;&#x2e;&#x63;&#111;&#109;</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.8.3</p>
172+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@2.9.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.8.3</p>
31+
<p id="footer">npm-bin &mdash; npm@2.9.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.8.3</p>
36+
<p id="footer">npm-bugs &mdash; npm@2.9.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.8.3</p>
45+
<p id="footer">npm-cache &mdash; npm@2.9.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.8.3</p>
39+
<p id="footer">npm-commands &mdash; npm@2.9.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.8.3</p>
60+
<p id="footer">npm-config &mdash; npm@2.9.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.8.3</p>
50+
<p id="footer">npm-deprecate &mdash; npm@2.9.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.8.3</p>
36+
<p id="footer">npm-docs &mdash; npm@2.9.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.8.3</p>
39+
<p id="footer">npm-edit &mdash; npm@2.9.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.8.3</p>
34+
<p id="footer">npm-explore &mdash; npm@2.9.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.8.3</p>
47+
<p id="footer">npm-help-search &mdash; npm@2.9.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.8.3</p>
42+
<p id="footer">npm-init &mdash; npm@2.9.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.8.3</p>
35+
<p id="footer">npm-install &mdash; npm@2.9.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.8.3</p>
45+
<p id="footer">npm-link &mdash; npm@2.9.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.8.3</p>
40+
<p id="footer">npm-load &mdash; npm@2.9.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.8.3</p>
66+
<p id="footer">npm-ls &mdash; npm@2.9.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.8.3</p>
31+
<p id="footer">npm-outdated &mdash; npm@2.9.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.8.3</p>
50+
<p id="footer">npm-owner &mdash; npm@2.9.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.8.3</p>
36+
<p id="footer">npm-pack &mdash; npm@2.9.0</p>
3737

0 commit comments

Comments
 (0)