Skip to content

Commit 938cc75

Browse files
othiym23Fishrock123
authored andcommitted
deps: upgrade to npm 2.13.0
PR-URL: #2152 Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent 6c3aabf commit 938cc75

File tree

364 files changed

+15153
-1036
lines changed

Some content is hidden

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

364 files changed

+15153
-1036
lines changed

deps/npm/AUTHORS

+4
Original file line numberDiff line numberDiff line change
@@ -291,3 +291,7 @@ Eduardo Pinho <[email protected]>
291291
Rachel Hutchison <[email protected]>
292292
Ryan Temple <[email protected]>
293293
Eugene Sharygin <[email protected]>
294+
Nick Heiner <[email protected]>
295+
James Talmage <[email protected]>
296+
297+
Joseph Dykstra <[email protected]>

deps/npm/CHANGELOG.md

+100
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,103 @@
1+
### v2.13.0 (2015-07-02):
2+
3+
#### FORREST IS OUT! LET'S SNEAK IN ALL THE THINGS!
4+
5+
Well, not _everything_. Just a couple of goodies, like the new `npm ping`
6+
command, and the ability to add files to the commits created by `npm version`
7+
with the new version hooks. There's also a couple of bugfixes in `npm` itself
8+
and some of its dependencies. Here we go!
9+
10+
#### YES HELLO THIS IS NPM REGISTRY SORRY NO DOG HERE
11+
12+
Yes, that's right! We now have a dedicated `npm ping` command. It's super simple
13+
and super easy. You ping. We tell you whether you pinged right by saying hello
14+
right back. This should help out folks dealing with things like proxy issues or
15+
other registry-access debugging issues. Give it a shot!
16+
17+
This addresses [#5750](https://github.com/npm/npm/issues/5750), and will help
18+
with the `npm doctor` stuff descripbed in
19+
[#6756](https://github.com/npm/npm/issues/6756).
20+
21+
* [`f1f7a85`](https://github.com/npm/npm/commit/f1f7a85)
22+
Add ping command to CLI
23+
([@michaelnisi](https://github.com/michaelnisi))
24+
* [`8cec629`](https://github.com/npm/npm/commit/8cec629)
25+
Add ping command to npm-registry-client
26+
([@michaelnisi](https://github.com/michaelnisi))
27+
* [`0c0c92d`](https://github.com/npm/npm/0c0c92d)
28+
Fixed ping command issues (added docs, tests, fixed minor bugs, etc)
29+
([@zkat](https://github.com/zkat))
30+
31+
#### I'VE WANTED THIS FOR `version` SINCE LIKE LITERALLY FOREVER AND A DAY
32+
33+
Seriously! This patch lets you add files to the `version` commit before it's
34+
made, So you can add additional metadata files, more automated changes to
35+
`package.json`, or even generate `CHANGELOG.md` automatically pre-commit if
36+
you're into that sort of thing. I'm so happy this is there I can't even. Do you
37+
have other fun usecases for this? Tell
38+
[npmbot (@npmjs)](http://twitter.com/npmjs) about it!
39+
40+
* [`582f170`](https://github.com/npm/npm/commit/582f170)
41+
[#8620](https://github.com/npm/npm/issues/8620) version: Allow scripts to add
42+
files to the commit.
43+
([@jamestalmage](https://github.com/jamestalmage))
44+
45+
#### ALL YOUR FILE DESCRIPTORS ARE BELONG TO US
46+
47+
We've had problems in the past with things like `EMFILE` errors popping up when
48+
trying to install packages with a bunch of dependencies. Isaac patched up
49+
[`graceful-fs`](https://github.com/isaacs/node-graceful-fs) to handle this case
50+
better, so we should be seeing fewer of those.
51+
52+
* [`022691a`](https://github.com/npm/npm/commit/022691a)
53+
`[email protected]`: Updated so we can monkey patch globally.
54+
([@isaacs](https://github.com/isaacs))
55+
* [`c9fb0fd`](https://github.com/npm/npm/commit/c9fb0fd)
56+
Globally monkey-patch graceful-fs. This should fix some errors when installing
57+
packages with lots of dependencies.
58+
([@isaacs](https://github.com/isaacs))
59+
60+
#### READ THE FINE DOCS. THEY'VE IMPROVED
61+
62+
* [`5587d0d`](https://github.com/npm/npm/commit/5587d0d)
63+
Nice clarification for `directories.bin`
64+
([@ujane](https://github.com/ujane))
65+
* [`20673c7`](https://github.com/npm/npm/commit/20673c7)
66+
Hey, Windows folks! Check out
67+
[`nvm-windows`](https://github.com/coreybutler/nvm-windows)
68+
([@ArtskydJ](https://github.com/ArtskydJ))
69+
70+
#### MORE NUMBERS! MORE VALUE!
71+
72+
* [`5afa2d5`](https://github.com/npm/npm/commit/5afa2d5)
73+
`[email protected]`: Documented package name rules in README
74+
([@zeusdeux](https://github.com/zeusdeux))
75+
* [`021f4d9`](https://github.com/npm/npm/commit/021f4d9)
76+
`[email protected]`: [#74](https://github.com/isaacs/rimraf/issues/74) Use async
77+
function for bin (to better handle Window's `EBUSY`)
78+
([@isaacs](https://github.com/isaacs))
79+
* [`5223432`](https://github.com/npm/npm/commit/5223432)
80+
`[email protected]`: Use `os.homedir()` polyfill for more reliable output. io.js
81+
added the function and the polyfill does a better job than the prior solution.
82+
([@sindresorhus](https://github.com/sindresorhus))
83+
* [`8ebbc90`](https://github.com/npm/npm/commit/8ebbc90)
84+
`[email protected]`: Make sure different git references get different
85+
cache folders. This should prevent `foo/bar#v1.0` and `foo/bar#master` from
86+
sharing the same cache folder.
87+
([@tomekwi](https://github.com/tomekwi))
88+
* [`367b854`](https://github.com/npm/npm/commit/367b854)
89+
`[email protected]`: Minor test/typo changes
90+
([@isaacs](https://github.com/isaacs))
91+
* [`9fcae61`](https://github.com/npm/npm/commit/9fcae61)
92+
`[email protected]`: Tiny doc change + stop firing 'match' events for ignored items.
93+
([@isaacs](https://github.com/isaacs))
94+
95+
#### OH AND ONE MORE THING
96+
97+
* [`7827249`](https://github.com/npm/npm/commit/7827249)
98+
`PeerDependencies` errors now include the package version.
99+
([@NickHeiner](https://github.com/NickHeiner))
100+
1101
### v2.12.1 (2015-06-25):
2102

3103
#### HEY WHERE DID EVERYBODY GO

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

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
npm-ping(3) -- Ping npm registry
2+
================================
3+
4+
## SYNOPSIS
5+
6+
npm.registry.ping(registry, options, function (er, pong))
7+
8+
## DESCRIPTION
9+
10+
Attempts to connect to the given registry, returning a `pong`
11+
object with various metadata if it succeeds.
12+
13+
This function is primarily useful for debugging connection issues
14+
to npm registries.

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

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
npm-ping(1) -- Ping npm registry
2+
================================
3+
4+
## SYNOPSIS
5+
6+
npm ping [--registry <registry>]
7+
8+
## DESCRIPTION
9+
10+
Ping the configured or given npm registry and verify authentication.
11+
12+
## SEE ALSO
13+
14+
* npm-config(1)
15+
* npm-config(7)
16+
* npmrc(5)

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

+31-8
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ valid second argument to semver.inc (one of `patch`, `minor`, `major`,
1515
`prepatch`, `preminor`, `premajor`, `prerelease`). In the second case,
1616
the existing version will be incremented by 1 in the specified field.
1717

18-
If run in a git repo, it will also create a version commit and tag, and fail if
19-
the repo is not clean. This behavior is controlled by `git-tag-version` (see
20-
below), and can be disabled on the command line by running `npm
21-
--no-git-tag-version version`
18+
If run in a git repo, it will also create a version commit and tag.
19+
This behavior is controlled by `git-tag-version` (see below), and can
20+
be disabled on the command line by running `npm --no-git-tag-version version`.
21+
It will fail if the working directory is not clean, unless the `--force`
22+
flag is set.
2223

2324
If supplied with `--message` (shorthand: `-m`) config option, npm will
2425
use it as a commit message when creating a version commit. If the
@@ -42,11 +43,33 @@ in your git config for this to work properly. For example:
4243

4344
If `preversion`, `version`, or `postversion` are in the `scripts` property of
4445
the package.json, they will be executed as part of running `npm version`.
45-
`preversion` and `version` are executed before bumping the package version, and
46-
`postversion` is executed afterwards. For example, to run `npm version` only if
47-
all tests pass:
4846

49-
"scripts": { "preversion": "npm test" }
47+
The exact order of execution is as follows:
48+
1. Check to make sure the git working directory is clean before we get started.
49+
Your scripts may add files to the commit in future steps.
50+
This step is skipped if the `--force` flag is set.
51+
2. Run the `preversion` script. These scripts have access to the old `version` in package.json.
52+
A typical use would be running your full test suite before deploying.
53+
Any files you want added to the commit should be explicitly added using `git add`.
54+
3. Bump `version` in `package.json` as requested (`patch`, `minor`, `major`, etc).
55+
4. Run the `version` script. These scripts have access to the new `version` in package.json
56+
(so they can incorporate it into file headers in generated files for example).
57+
Again, scripts should explicitly add generated files to the commit using `git add`.
58+
5. Commit and tag.
59+
6. Run the `postversion` script. Use it to clean up the file system or automatically push
60+
the commit and/or tag.
61+
62+
Take the following example:
63+
64+
"scripts": {
65+
"preversion": "npm test",
66+
"version": "npm run build && git add -A dist",
67+
"postversion": "git push && git push --tags && rm -rf build/temp"
68+
}
69+
70+
This runs all your tests, and proceeds only if they pass. Then runs your `build` script, and
71+
adds everything in the `dist` directory to the commit. After the commit, it pushes the new commit
72+
and tag up to the server, and deletes the `build/temp` directory.
5073

5174
## CONFIGURATION
5275

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

+6-3
Original file line numberDiff line numberDiff line change
@@ -283,10 +283,13 @@ with the lib folder in any way, but it's useful meta info.
283283

284284
### directories.bin
285285

286-
If you specify a `bin` directory, then all the files in that folder will
287-
be added as children of the `bin` path.
286+
If you specify a `bin` directory in `directories.bin`, all the files in
287+
that folder will be added.
288288

289-
If you have a `bin` path already, then this has no effect.
289+
Because of the way the `bin` directive works, specifying both a
290+
`bin` path and setting `directories.bin` is an error. If you want to
291+
specify individual files, use `bin`, and for all the files in an
292+
existing `bin` directory, use `directories.bin`.
290293

291294
### directories.man
292295

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

+1
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,7 @@ Unix:
279279
Windows:
280280

281281
* <http://github.com/marcelklehr/nodist>
282+
* <https://github.com/coreybutler/nvm-windows>
282283
* <https://github.com/hakobera/nvmw>
283284
* <https://github.com/nanjingboy/nvmw>
284285

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

+8
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ Manage package owners
113113

114114
Create a tarball from a package
115115

116+
### npm-ping(1)
117+
118+
Ping npm registry
119+
116120
### npm-prefix(1)
117121

118122
Display prefix
@@ -285,6 +289,10 @@ Manage package owners
285289

286290
Create a tarball from a package
287291

292+
### npm-ping(3)
293+
294+
Ping npm registry
295+
288296
### npm-prefix(3)
289297

290298
Display prefix

deps/npm/html/doc/README.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ <h2 id="legal-stuff">Legal Stuff</h2>
140140
<p>If you have a complaint about a package in the public npm registry,
141141
and cannot <a href="https://docs.npmjs.com/misc/disputes">resolve it with the package
142142
owner</a>, please email
143-
<a href="&#109;&#x61;&#105;&#x6c;&#116;&#x6f;&#x3a;&#x73;&#x75;&#112;&#x70;&#x6f;&#114;&#x74;&#x40;&#x6e;&#x70;&#x6d;&#x6a;&#x73;&#x2e;&#x63;&#111;&#x6d;">&#x73;&#x75;&#112;&#x70;&#x6f;&#114;&#x74;&#x40;&#x6e;&#x70;&#x6d;&#x6a;&#x73;&#x2e;&#x63;&#111;&#x6d;</a> and explain the situation.</p>
143+
<a href="&#x6d;&#97;&#x69;&#108;&#116;&#x6f;&#58;&#x73;&#117;&#x70;&#x70;&#111;&#x72;&#x74;&#64;&#x6e;&#112;&#109;&#x6a;&#x73;&#46;&#99;&#111;&#109;">&#x73;&#117;&#x70;&#x70;&#111;&#x72;&#x74;&#64;&#x6e;&#112;&#109;&#x6a;&#x73;&#46;&#99;&#111;&#109;</a> and explain the situation.</p>
144144
<p>Any data published to The npm Registry (including user account
145145
information) may be removed or modified at the sole discretion of the
146146
npm server administrators.</p>
@@ -183,5 +183,5 @@ <h2 id="see-also">SEE ALSO</h2>
183183
<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>
184184
<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>
185185
</table>
186-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@2.12.1</p>
186+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@2.13.0</p>
187187

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

0 commit comments

Comments
 (0)