Skip to content

Commit 1e2fa15

Browse files
othiym23bnoordhuis
authored andcommitted
deps: upgrade npm to 2.6.0
PR-URL: #904 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent 3ab9b92 commit 1e2fa15

File tree

236 files changed

+1525
-440
lines changed

Some content is hidden

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

236 files changed

+1525
-440
lines changed

deps/npm/.eslintrc

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"curly": 0,
1111
"no-underscore-dangle": 0,
1212
"no-lonely-if": 1,
13+
"no-shadow": 0,
1314
"no-unused-vars": [2, {"vars" : "all", "args" : "after-used"}],
1415
"no-mixed-requires": 0,
1516
"space-infix-ops": 0,

deps/npm/.travis.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
language: node_js
22
node_js:
3-
- "0.11"
3+
- iojs
4+
- "0.12"
45
- "0.10"
6+
- "0.8"
57
env:
68
- DEPLOY_VERSION=testing
79
before_install:
810
- "npm config set spin false"
9-
- "npm install -g npm@^2"
11+
- "npm install -g npm@~2"
1012
- "sudo mkdir -p /var/run/couchdb"
1113
script: "npm run-script test-all"
14+
notifications:
15+
slack: npm-inc:kRqQjto7YbINqHPb1X6nS3g8

deps/npm/CHANGELOG.md

+47
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
### v2.6.0 (2015-02-12):
2+
3+
#### A LONG-AWAITED GUEST
4+
5+
* [`38c4825`](https://github.com/npm/npm/commit/38c48254d3d217b4babf5027cb39492be4052fc2)
6+
[#5068](https://github.com/npm/npm/issues/5068) Add new logout command, and
7+
make it do something useful on both bearer-based and basic-based authed
8+
clients. ([@othiym23](https://github.com/othiym23))
9+
* [`4bf0f5d`](https://github.com/npm/npm/commit/4bf0f5d56c33649124b486e016ba4a620c105c1c)
10+
`[email protected]`: Support new `logout` endpoint to invalidate
11+
token for sessions. ([@othiym23](https://github.com/othiym23))
12+
13+
#### DEPRECATIONS
14+
15+
* [`c8e08e6`](https://github.com/npm/npm/commit/c8e08e6d91f4016c80f572aac5a2080df0f78098)
16+
[#6565](https://github.com/npm/npm/issues/6565) Warn that `peerDependency`
17+
behavior is changing and add a note to the docs.
18+
([@othiym23](https://github.com/othiym23))
19+
* [`7c81a5f`](https://github.com/npm/npm/commit/7c81a5f5f058941f635a92f22641ea68e79b60db)
20+
[#7171](https://github.com/npm/npm/issues/7171) Warn that `engineStrict` in
21+
`package.json` will be going away in the next major version of npm (coming
22+
soon!) ([@othiym23](https://github.com/othiym23))
23+
24+
#### BUG FIXES & TWEAKS
25+
26+
* [`add5890`](https://github.com/npm/npm/commit/add5890ce447dabf120b907a85f715df1e065f44)
27+
[#4668](https://github.com/npm/npm/issues/4668) `[email protected]`:
28+
Warn when a `bin` symbolic link is a dangling reference.
29+
* [`4b42071`](https://github.com/npm/npm/commit/4b420714dfb84338d85def78c30bd665e32d72c1)
30+
`[email protected]`: Add functions to extract parts of the version triple, fix a
31+
typo. ([@isaacs](https://github.com/isaacs))
32+
* [`a9aff38`](https://github.com/npm/npm/commit/a9aff38719918486fc381d67ad3371c475632ff7)
33+
Use full path for man pages as the symbolic link source, instead of just the
34+
file name. ([@bengl](https://github.com/bengl))
35+
* [`6fd0fbd`](https://github.com/npm/npm/commit/6fd0fbd8a0347fd47cb7ee0064e0902a2f8a087c)
36+
[#7233](https://github.com/npm/npm/issues/7233) Ensure `globalconfig` path
37+
exists before trying to edit it. ([@ljharb](https://github.com/ljharb))
38+
* [`a0a2620`](https://github.com/npm/npm/commit/a0a262047647d9e2690cebe5a89e6a0dd33202bb)
39+
`[email protected]`: Allow embedded, quoted equals signs in ini field names.
40+
([@isaacs](https://github.com/isaacs))
41+
42+
Also typos and other documentation issues were addressed by
43+
[@rutsky](https://github.com/rutsky), [@imurchie](https://github.com/imurchie),
44+
[@marcin-wosinek](https://github.com/marcin-wosinek),
45+
[@marr](https://github.com/marr), [@amZotti](https://github.com/amZotti), and
46+
[@karlhorky](https://github.com/karlhorky). Thank you, everyone!
47+
148
### v2.5.1 (2015-02-06):
249

350
This release doesn't look like much, but considerable effort went into ensuring

deps/npm/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ npm, Inc. or the Node.js project.
173173

174174
Data published to the npm registry is not part of npm itself, and is
175175
the sole property of the publisher. While every effort is made to
176-
ensure accountability, there is absolutely no guarantee, warrantee, or
176+
ensure accountability, there is absolutely no guarantee, warranty, or
177177
assertion expressed or implied as to the quality, fitness for a
178178
specific purpose, or lack of malice in any given npm package.
179179

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Add, remove, and enumerate distribution tags on a package:
2020

2121
* ls:
2222
Show all of the dist-tags for a package, defaulting to the package in
23-
the curren prefix.
23+
the current prefix.
2424

2525
A tag can be used when installing packages as a reference to a version instead
2626
of using a specific version number:

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ For example:
3838
npm link redis # link-install the package
3939

4040
Now, any changes to ~/projects/node-redis will be reflected in
41-
~/projects/node-bloggy/node_modules/redis/
41+
~/projects/node-bloggy/node_modules/node-redis/
4242

4343
You may also shortcut the two steps in one. For example, to do the
4444
above use-case in a shorter way:
@@ -49,7 +49,7 @@ above use-case in a shorter way:
4949
The second line is the equivalent of doing:
5050

5151
(cd ../node-redis; npm link)
52-
npm link redis
52+
npm link node-redis
5353

5454
That is, it first creates a global link, and then links the global
5555
installation target into your project's `node_modules` folder.

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

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
npm-logout(1) -- Log out of the registry
2+
========================================
3+
4+
## SYNOPSIS
5+
6+
npm logout [--registry=url] [--scope=@orgname]
7+
8+
## DESCRIPTION
9+
10+
When logged into a registry that supports token-based authentication, tell the
11+
server to end this token's session. This will invalidate the token everywhere
12+
you're using it, not just for the current environment.
13+
14+
When logged into a legacy registry that uses username and password authentication, this will
15+
clear the credentials in your user configuration. In this case, it will _only_ affect
16+
the current environment.
17+
18+
If `--scope` is provided, this will find the credentials for the registry
19+
connected to that scope, if set.
20+
21+
## CONFIGURATION
22+
23+
### registry
24+
25+
Default: http://registry.npmjs.org/
26+
27+
The base URL of the npm package registry. If `scope` is also specified,
28+
it takes precedence.
29+
30+
### scope
31+
32+
Default: none
33+
34+
If specified, the user and login credentials given will be associated
35+
with the specified scope. See `npm-scope(7)`. You can use both at the same time,
36+
e.g.
37+
38+
npm adduser --registry=http://myregistry.example.com --scope=@myco
39+
40+
This will set a registry for the given scope and login or create a user for
41+
that registry at the same time.
42+
43+
## SEE ALSO
44+
45+
* npm-adduser(1)
46+
* npm-registry(7)
47+
* npm-config(1)
48+
* npm-config(7)
49+
* npmrc(5)
50+
* npm-whoami(1)

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

+21-9
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ with your package.
7575

7676
It should look like this:
7777

78-
{ "url" : "http://github.com/owner/project/issues"
78+
{ "url" : "https://github.com/owner/project/issues"
7979
, "email" : "[email protected]"
8080
}
8181

@@ -219,7 +219,7 @@ will create entries for `man foo` and `man 2 foo`
219219

220220
The CommonJS [Packages](http://wiki.commonjs.org/wiki/Packages/1.0) spec details a
221221
few ways that you can indicate the structure of your package using a `directories`
222-
object. If you look at [npm's package.json](http://registry.npmjs.org/npm/latest),
222+
object. If you look at [npm's package.json](https://registry.npmjs.org/npm/latest),
223223
you'll see that it has directories for doc, lib, and man.
224224

225225
In the future, this information may be used in other creative ways.
@@ -260,18 +260,23 @@ Do it like this:
260260

261261
"repository" :
262262
{ "type" : "git"
263-
, "url" : "http://github.com/npm/npm.git"
263+
, "url" : "https://github.com/npm/npm.git"
264264
}
265265

266266
"repository" :
267267
{ "type" : "svn"
268-
, "url" : "http://v8.googlecode.com/svn/trunk/"
268+
, "url" : "https://v8.googlecode.com/svn/trunk/"
269269
}
270270

271271
The URL should be a publicly available (perhaps read-only) url that can be handed
272272
directly to a VCS program without any modification. It should not be a url to an
273273
html project page that you put in your browser. It's for computers.
274274

275+
For GitHub repositories you can use the same shortcut syntax you use for `npm
276+
install`:
277+
278+
"repository": "npm/npm"
279+
275280
## scripts
276281

277282
The "scripts" property is a dictionary containing script commands that are run
@@ -459,13 +464,19 @@ For example:
459464
}
460465

461466
This ensures your package `tea-latte` can be installed *along* with the second
462-
major version of the host package `tea` only. The host package is automatically
463-
installed if needed. `npm install tea-latte` could possibly yield the following
464-
dependency graph:
467+
major version of the host package `tea` only. `npm install tea-latte` could
468+
possibly yield the following dependency graph:
465469

466470
467471
468472

473+
**NOTE: npm versions 1 and 2 will automatically install `peerDependencies` if
474+
they are not explicitly depended upon higher in the dependency tree. In the
475+
next major version of npm (npm@3), this will no longer be the case. You will
476+
receive a warning that the peerDependency is not installed instead.** The
477+
behavior in npms 1 & 2 was frequently confusing and could easily put you into
478+
dependency hell, a situation that npm is designed to avoid as much as possible.
479+
469480
Trying to install another plugin with a conflicting requirement will cause an
470481
error. For this reason, make sure your plugin requirement is as broad as
471482
possible, and not to lock it down to specific patch versions.
@@ -534,6 +545,8 @@ field is advisory only.
534545

535546
## engineStrict
536547

548+
**NOTE: This feature is deprecated and will be removed in npm 3.0.0.**
549+
537550
If you are sure that your module will *definitely not* run properly on
538551
versions of Node/npm other than those specified in the `engines` object,
539552
then you can set `"engineStrict": true` in your package.json file.
@@ -542,8 +555,7 @@ This will override the user's `engine-strict` config setting.
542555
Please do not do this unless you are really very very sure. If your
543556
engines object is something overly restrictive, you can quite easily and
544557
inadvertently lock yourself into obscurity and prevent your users from
545-
updating to new versions of Node. Consider this choice carefully. If
546-
people abuse it, it will be removed in a future version of npm.
558+
updating to new versions of Node. Consider this choice carefully.
547559

548560
## os
549561

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

+4
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ Install a package
9393

9494
Symlink a package folder
9595

96+
### npm-logout(1)
97+
98+
Log out of the registry
99+
96100
### npm-ls(1)
97101

98102
List installed packages

deps/npm/doc/misc/semver.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ similar risk on the *next* set of prerelease versions.
106106
The method `.inc` takes an additional `identifier` string argument that
107107
will append the value of the string as a prerelease identifier:
108108

109-
````javascript
109+
```javascript
110110
> semver.inc('1.2.3', 'pre', 'beta')
111111
'1.2.4-beta.0'
112112
```
@@ -248,6 +248,9 @@ strings that they parse.
248248
same as `prepatch`. It increments the patch version, then makes a
249249
prerelease. If the input version is already a prerelease it simply
250250
increments it.
251+
* `major(v)`: Return the major version number.
252+
* `minor(v)`: Return the minor version number.
253+
* `patch(v)`: Return the patch version number.
251254

252255
### Comparison
253256

deps/npm/html/doc/README.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,13 @@ <h2 id="legal-stuff">Legal Stuff</h2>
120120
npm, Inc. or the Node.js project.</p>
121121
<p>Data published to the npm registry is not part of npm itself, and is
122122
the sole property of the publisher. While every effort is made to
123-
ensure accountability, there is absolutely no guarantee, warrantee, or
123+
ensure accountability, there is absolutely no guarantee, warranty, or
124124
assertion expressed or implied as to the quality, fitness for a
125125
specific purpose, or lack of malice in any given npm package.</p>
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;&#97;&#x69;&#108;&#x74;&#x6f;&#58;&#x73;&#117;&#112;&#x70;&#111;&#x72;&#x74;&#64;&#110;&#x70;&#x6d;&#x6a;&#115;&#x2e;&#x63;&#x6f;&#x6d;">&#x73;&#117;&#112;&#x70;&#111;&#x72;&#x74;&#64;&#110;&#x70;&#x6d;&#x6a;&#115;&#x2e;&#x63;&#x6f;&#x6d;</a> and explain the situation.</p>
129+
<a href="&#109;&#97;&#x69;&#x6c;&#x74;&#x6f;&#58;&#115;&#x75;&#x70;&#x70;&#111;&#x72;&#116;&#x40;&#x6e;&#x70;&#109;&#x6a;&#115;&#x2e;&#x63;&#x6f;&#109;">&#115;&#x75;&#x70;&#x70;&#111;&#x72;&#116;&#x40;&#x6e;&#x70;&#109;&#x6a;&#115;&#x2e;&#x63;&#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.5.1</p>
172+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@2.6.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.5.1</p>
31+
<p id="footer">npm-bin &mdash; npm@2.6.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.5.1</p>
36+
<p id="footer">npm-bugs &mdash; npm@2.6.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.5.1</p>
45+
<p id="footer">npm-cache &mdash; npm@2.6.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.5.1</p>
39+
<p id="footer">npm-commands &mdash; npm@2.6.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.5.1</p>
60+
<p id="footer">npm-config &mdash; npm@2.6.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.5.1</p>
50+
<p id="footer">npm-deprecate &mdash; npm@2.6.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.5.1</p>
36+
<p id="footer">npm-docs &mdash; npm@2.6.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.5.1</p>
39+
<p id="footer">npm-edit &mdash; npm@2.6.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.5.1</p>
34+
<p id="footer">npm-explore &mdash; npm@2.6.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.5.1</p>
47+
<p id="footer">npm-help-search &mdash; npm@2.6.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.5.1</p>
42+
<p id="footer">npm-init &mdash; npm@2.6.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.5.1</p>
35+
<p id="footer">npm-install &mdash; npm@2.6.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.5.1</p>
45+
<p id="footer">npm-link &mdash; npm@2.6.0</p>
4646

0 commit comments

Comments
 (0)