Skip to content

Commit faf34ff

Browse files
othiym23bnoordhuis
authored andcommitted
deps: upgrade npm to 2.4.1
PR-URL: #663 Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 40e29dc commit faf34ff

File tree

202 files changed

+4155
-215
lines changed

Some content is hidden

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

202 files changed

+4155
-215
lines changed

deps/npm/CHANGELOG.md

+52
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,55 @@
1+
### v2.4.1 (2015-01-23):
2+
3+
![bridge that doesn't meet in the middle](http://www.static-18.themodernnomad.com/wp-content/uploads/2011/08/bridge-fail.jpg)
4+
5+
Let's accentuate the positive: the `dist-tag` endpoints for `npm dist-tag
6+
{add,rm,ls}` are now live on the public npm registry.
7+
8+
* [`f70272b`](https://github.com/npm/npm/commit/f70272bed7d77032d1e21553371dd5662fef32f2)
9+
`[email protected]`: Properly escape JSON tag version strings and
10+
filter `_etag` from CouchDB docs. ([@othiym23](https://github.com/othiym23))
11+
12+
### v2.4.0 (2015-01-22):
13+
14+
#### REGISTRY 2: ACCESS AND DIST-TAGS
15+
16+
NOTE: This week's registry-2 commands are leading the implementation on
17+
registry.npmjs.org a little bit, so some of the following may not work for
18+
another week or so. Also note that `npm access` has documentation and
19+
subcommands that are not yet finished, because they depend on incompletely
20+
specified registry API endpoints. Things are coming together very quickly,
21+
though, so expect the missing pieces to be filled in the coming weeks.
22+
23+
* [`c963eb2`](https://github.com/npm/npm/commit/c963eb295cf766921b1680f4a71fd0ed3e1bcad8)
24+
[#7181](https://github.com/npm/npm/issues/7181) NEW `npm access public` and
25+
`npm access restricted`: Toggle visibility of scoped packages.
26+
([@othiym23](https://github.com/othiym23))
27+
* [`dc51810`](https://github.com/npm/npm/commit/dc51810e08c0f104259146c9c035d255de4f7d1d)
28+
[#6243](https://github.com/npm/npm/issues/6243) /
29+
[#6854](https://github.com/npm/npm/issues/6854) NEW `npm dist-tags`: Directly
30+
manage `dist-tags` on packages. Most notably, `dist-tags` can now be deleted.
31+
([@othiym23](https://github.com/othiym23))
32+
* [`4c7c132`](https://github.com/npm/npm/commit/4c7c132a6b8305dca2974943226c39c0cdc64ff9)
33+
[#7181](https://github.com/npm/npm/issues/7181) /
34+
[#6854](https://github.com/npm/npm/issues/6854) `[email protected]`:
35+
Add new `access` and `dist-tags` endpoints
36+
([@othiym23](https://github.com/othiym23))
37+
38+
#### NOT EXACTLY SELF-DEPRECATING
39+
40+
* [`10d5c77`](https://github.com/npm/npm/commit/10d5c77653487f15759ac7de262a97e9c655240c)
41+
[#6274](https://github.com/npm/npm/issues/6274) Deprecate `npm tag` in favor
42+
of `npm dist-tag`. ([@othiym23](https://github.com/othiym23))
43+
44+
#### BUG FIX AND TINY FEATURE
45+
46+
* [`29a6ef3`](https://github.com/npm/npm/commit/29a6ef38ef86ac318c5d9ea4bee28ce614672fa6)
47+
[#6850](https://github.com/npm/npm/issues/6850) Be smarter about determining
48+
base of file deletion when unbuilding. ([@phated](https://github.com/phated))
49+
* [`4ad01ea`](https://github.com/npm/npm/commit/4ad01ea2930a7a1cf88be121cc5ce9eba40c6807)
50+
`[email protected]`: Support `--save-exact` in `npm init`.
51+
([@gustavnikolaj](https://github.com/gustavnikolaj))
52+
153
### v2.3.0 (2015-01-15):
254

355
#### REGISTRY 2: OH MY STARS! WHO AM I?

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

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
npm-access(1) -- Set access level on published packages
2+
=======================================================
3+
4+
## SYNOPSIS
5+
6+
npm access public [<package>]
7+
npm access restricted [<package>]
8+
9+
npm access add <read-only|read-write> <entity> [<package>]
10+
npm access rm <entity> [<package>]
11+
12+
npm access ls [<package>]
13+
npm access edit [<package>]
14+
15+
## DESCRIPTION
16+
17+
Used to set access controls on private packages.
18+
19+
For all of the subcommands, `npm access` will perform actions on the packages
20+
in the current working directory if no package name is passed to the
21+
subcommand.
22+
23+
* public / restricted:
24+
Set a package to be either publicly accessible or restricted.
25+
26+
* add / rm:
27+
Add or remove the ability of users and teams to have read-only or read-write
28+
access to a package.
29+
30+
* ls:
31+
Show all of the access privileges for a package. Will only show permissions
32+
for packages to which you have at least read access.
33+
34+
* edit:
35+
Set the access privileges for a package at once using `$EDITOR`.
36+
37+
## DETAILS
38+
39+
`npm access` always operates directly on the current registry, configurable
40+
from the command line using `--registry=<registry url>`.
41+
42+
Unscoped packages are *always public*.
43+
44+
Scoped packages *default to restricted*, but you can either publish them as
45+
public using `npm publish --access=public`, or set their access as public using
46+
`npm access public` after the initial publish.
47+
48+
You must have privileges to set the access of a package:
49+
50+
* You are an owner of an unscoped or scoped package.
51+
* You are a member of the team that owns a scope.
52+
* You have been given read-write privileges for a package, either as a member
53+
of a team or directly as an owner.
54+
55+
If your account is not paid, then attempts to publish scoped packages will fail
56+
with an HTTP 402 status code (logically enough), unless you use
57+
`--access=public`.
58+
59+
## SEE ALSO
60+
61+
* npm-publish(1)
62+
* npm-config(7)
63+
* npm-registry(7)

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

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
npm-dist-tag(1) -- Modify package distribution tags
2+
===================================================
3+
4+
## SYNOPSIS
5+
6+
npm dist-tag add <pkg>@<version> [<tag>]
7+
npm dist-tag rm <pkg> <tag>
8+
npm dist-tag ls [<pkg>]
9+
10+
## DESCRIPTION
11+
12+
Add, remove, and enumerate distribution tags on a package:
13+
14+
* add:
15+
Tags the specified version of the package with the specified tag, or the
16+
`--tag` config if not specified.
17+
18+
* rm:
19+
Clear a tag that is no longer in use from the package.
20+
21+
* ls:
22+
Show all of the dist-tags for a package, defaulting to the package in
23+
the curren prefix.
24+
25+
A tag can be used when installing packages as a reference to a version instead
26+
of using a specific version number:
27+
28+
npm install <name>@<tag>
29+
30+
When installing dependencies, a preferred tagged version may be specified:
31+
32+
npm install --tag <tag>
33+
34+
This also applies to `npm dedupe`.
35+
36+
Publishing a package always sets the "latest" tag to the published version.
37+
38+
## PURPOSE
39+
40+
Tags can be used to provide an alias instead of version numbers. For
41+
example, `npm` currently uses the tag "next" to identify the upcoming
42+
version, and the tag "latest" to identify the current version.
43+
44+
A project might choose to have multiple streams of development, e.g.,
45+
"stable", "canary".
46+
47+
## CAVEATS
48+
49+
This command used to be known as `npm tag`, which only created new tags, and so
50+
had a different syntax.
51+
52+
Tags must share a namespace with version numbers, because they are specified in
53+
the same slot: `npm install <pkg>@<version>` vs `npm install <pkg>@<tag>`.
54+
55+
Tags that can be interpreted as valid semver ranges will be rejected. For
56+
example, `v1.4` cannot be used as a tag, because it is interpreted by semver as
57+
`>=1.4.0 <1.5.0`. See <https://github.com/npm/npm/issues/6082>.
58+
59+
The simplest way to avoid semver problems with tags is to use tags that do not
60+
begin with a number or the letter `v`.
61+
62+
## SEE ALSO
63+
64+
* npm-tag(1)
65+
* npm-publish(1)
66+
* npm-install(1)
67+
* npm-dedupe(1)
68+
* npm-registry(7)
69+
* npm-config(1)
70+
* npm-config(7)
71+
* npm-tag(3)
72+
* npmrc(5)

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

+9-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ npm-publish(1) -- Publish a package
44

55
## SYNOPSIS
66

7-
npm publish <tarball> [--tag <tag>]
8-
npm publish <folder> [--tag <tag>]
7+
npm publish <tarball> [--tag <tag>] [--access <public|restricted>]
8+
npm publish <folder> [--tag <tag>] [--access <public|restricted>]
99

1010
## DESCRIPTION
1111

@@ -29,6 +29,12 @@ specifying a different default registry or using a `npm-scope(7)` in the name
2929
<name>@<tag>` will install this version. By default, `npm publish` updates
3030
and `npm install` installs the `latest` tag.
3131

32+
* `[--access <public|restricted>]`
33+
Tells the registry whether this package should be published as public or
34+
restricted. Only applies to scoped packages, which default to `restricted`.
35+
If you don't have a paid account, you must publish with `--access public`
36+
to publish scoped packages.
37+
3238
Fails if the package name and version combination already exists in
3339
the specified registry.
3440

@@ -39,6 +45,7 @@ it is removed with npm-unpublish(1).
3945
## SEE ALSO
4046

4147
* npm-registry(7)
48+
* npm-scope(7)
4249
* npm-adduser(1)
4350
* npm-owner(1)
4451
* npm-deprecate(1)

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

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ npm-tag(1) -- Tag a published version
77

88
## DESCRIPTION
99

10+
THIS COMMAND IS DEPRECATED. See npm-dist-tag(1) for details.
11+
1012
Tags the specified version of the package with the specified tag, or the
1113
`--tag` config if not specified.
1214

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

+10
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,16 @@ See package.json(5) for more information.
107107

108108
## Config Settings
109109

110+
### access
111+
112+
* Default: `restricted`
113+
* Type: Access
114+
115+
When publishing scoped packages, the access level defaults to `restricted`. If
116+
you want your scoped package to be publicly viewable (and installable) set
117+
`--access=public`. The only valid values for `access` are `public` and
118+
`restricted`. Unscoped packages _always_ have an access level of `public`.
119+
110120
### always-auth
111121

112122
* Default: false

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

+8
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ Using npm on the command line
1313

1414
javascript package manager
1515

16+
### npm-access(1)
17+
18+
Set access level on published packages
19+
1620
### npm-adduser(1)
1721

1822
Add a registry user account
@@ -53,6 +57,10 @@ Reduce duplication
5357

5458
Deprecate a version of a package
5559

60+
### npm-dist-tag(1)
61+
62+
Modify package distribution tags
63+
5664
### npm-docs(1)
5765

5866
Docs for a package in a web browser maybe

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="&#109;&#x61;&#105;&#x6c;&#x74;&#x6f;&#58;&#115;&#x75;&#112;&#x70;&#x6f;&#x72;&#x74;&#64;&#110;&#x70;&#x6d;&#x6a;&#115;&#x2e;&#99;&#111;&#x6d;">&#115;&#x75;&#112;&#x70;&#x6f;&#x72;&#x74;&#64;&#110;&#x70;&#x6d;&#x6a;&#115;&#x2e;&#99;&#111;&#x6d;</a> and explain the situation.</p>
129+
<a href="&#109;&#x61;&#x69;&#108;&#116;&#111;&#x3a;&#x73;&#x75;&#x70;&#x70;&#x6f;&#x72;&#x74;&#x40;&#x6e;&#x70;&#109;&#106;&#x73;&#x2e;&#99;&#x6f;&#109;">&#x73;&#x75;&#x70;&#x70;&#x6f;&#x72;&#x74;&#x40;&#x6e;&#x70;&#109;&#106;&#x73;&#x2e;&#99;&#x6f;&#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.3.0</p>
172+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@2.4.1</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.3.0</p>
31+
<p id="footer">npm-bin &mdash; npm@2.4.1</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.3.0</p>
36+
<p id="footer">npm-bugs &mdash; npm@2.4.1</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.3.0</p>
45+
<p id="footer">npm-cache &mdash; npm@2.4.1</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.3.0</p>
39+
<p id="footer">npm-commands &mdash; npm@2.4.1</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.3.0</p>
60+
<p id="footer">npm-config &mdash; npm@2.4.1</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.3.0</p>
50+
<p id="footer">npm-deprecate &mdash; npm@2.4.1</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.3.0</p>
36+
<p id="footer">npm-docs &mdash; npm@2.4.1</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.3.0</p>
39+
<p id="footer">npm-edit &mdash; npm@2.4.1</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.3.0</p>
34+
<p id="footer">npm-explore &mdash; npm@2.4.1</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.3.0</p>
47+
<p id="footer">npm-help-search &mdash; npm@2.4.1</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.3.0</p>
42+
<p id="footer">npm-init &mdash; npm@2.4.1</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.3.0</p>
35+
<p id="footer">npm-install &mdash; npm@2.4.1</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.3.0</p>
45+
<p id="footer">npm-link &mdash; npm@2.4.1</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.3.0</p>
40+
<p id="footer">npm-load &mdash; npm@2.4.1</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.3.0</p>
66+
<p id="footer">npm-ls &mdash; npm@2.4.1</p>
6767

0 commit comments

Comments
 (0)