deps: upgrade npm to 3.10.9
PR-URL: https://github.com/nodejs/node/pull/9286 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
This commit is contained in:
parent
1a55e9a567
commit
379097850d
2
deps/npm/.github/issue_template.md
vendored
2
deps/npm/.github/issue_template.md
vendored
@ -21,7 +21,7 @@
|
|||||||
- `npm -v` prints:
|
- `npm -v` prints:
|
||||||
- `node -v` prints:
|
- `node -v` prints:
|
||||||
- `npm config get registry` prints:
|
- `npm config get registry` prints:
|
||||||
- Windows, OS X, or Linux?:
|
- Windows, OS X/macOS, or Linux?:
|
||||||
- Network issues:
|
- Network issues:
|
||||||
- Geographic location where npm was run:
|
- Geographic location where npm was run:
|
||||||
- [ ] I use a proxy to connect to the npm registry.
|
- [ ] I use a proxy to connect to the npm registry.
|
||||||
|
5
deps/npm/AUTHORS
vendored
5
deps/npm/AUTHORS
vendored
@ -430,3 +430,8 @@ Michael Jasper <mdjasper@gmail.com>
|
|||||||
Max <contact@mstoiber.com>
|
Max <contact@mstoiber.com>
|
||||||
Szymon Nowak <szimek@gmail.com>
|
Szymon Nowak <szimek@gmail.com>
|
||||||
Jason Karns <jason.karns@gmail.com>
|
Jason Karns <jason.karns@gmail.com>
|
||||||
|
Lucas Holmquist <lholmqui@redhat.com>
|
||||||
|
Ionică Bizău <bizauionica@gmail.com>
|
||||||
|
Alex Chesters <AlexChesters@users.noreply.github.com>
|
||||||
|
Robert Gay <robert.gay@redfin.com>
|
||||||
|
Steven <stevokk@hotmail.com>
|
||||||
|
150
deps/npm/CHANGELOG.md
vendored
150
deps/npm/CHANGELOG.md
vendored
@ -1,3 +1,153 @@
|
|||||||
|
### v3.10.9 (2016-10-06)
|
||||||
|
|
||||||
|
Hi everyone! This is the last of our monthly releases. We're going to give
|
||||||
|
an every-two-weeks schedule a try starting with our next release. We'll
|
||||||
|
reevaluate in a quarter, but we suspect that will be what we'll stick with.
|
||||||
|
You might be wondering _why_ we've been fiddling with the release cadence? Well,
|
||||||
|
we've been trying to tune it to to minimize the overhead for our little team.
|
||||||
|
|
||||||
|
This is ALSO the ULTIMATE release of `npm` version 3. That's right, in
|
||||||
|
just two weeks' time (October 20th for you fans of calendar time), our dear
|
||||||
|
`npm` will be hitting the big 4.0.
|
||||||
|
|
||||||
|
**DON'T PANIC**
|
||||||
|
|
||||||
|
This is gonna be a much, MUCH smaller major version than 3.x was. Maybe even
|
||||||
|
smaller than 2.x was. I can't tell you everything that'll be in there just
|
||||||
|
yet, but at the very least it's going to have what's in our
|
||||||
|
[4.x milestone](https://github.com/npm/npm/pulls?q=is%3Aopen+is%3Apr+milestone%3A4.x),
|
||||||
|
PLUS, the first steps in
|
||||||
|
[making `prepublish` work](https://github.com/npm/npm/issues/10074) the way
|
||||||
|
people expect it to.
|
||||||
|
|
||||||
|
**NOW ABOUT THIS RELEASE**
|
||||||
|
|
||||||
|
This release sees a whole slew of bug fixes. Notably a bunch of lifecycle
|
||||||
|
fixes and a really important shrinkwrap fix.
|
||||||
|
|
||||||
|
#### LIFECYCLE FIXES
|
||||||
|
|
||||||
|
* [`d388f90`](https://github.com/npm/npm/commit/d388f90732981633b3cdb4fc7fb0fababd4e64ab)
|
||||||
|
[#13942](https://github.com/npm/npm/pull/13942)
|
||||||
|
Fix current working directory while running shrinkwrap lifecycle scripts.
|
||||||
|
Previously if you ran a shrinkwrap from another lifecycle script AND
|
||||||
|
`node_modules` existed (and if you're running `npm shrinkwrap` it probably
|
||||||
|
should) then `npm` would run the shrinkwrap lifecycle from the
|
||||||
|
`node_modules` folder instead of the package folder.
|
||||||
|
([@evocateur](https://github.com/evocateur))
|
||||||
|
([@iarna](https://github.com/iarna))
|
||||||
|
* [`c3b6cdf`](https://github.com/npm/npm/commit/c3b6cdfedcdb4d9e7712be5245d9b274828d88d1)
|
||||||
|
[#13964](https://github.com/npm/npm/pull/13964)
|
||||||
|
Fix bug where the `uninstall` lifecycles weren't being run when you
|
||||||
|
reinstalled/updated an existing module.
|
||||||
|
([@iarna](https://github.com/iarna))
|
||||||
|
* [`72bb89c`](https://github.com/npm/npm/commit/72bb89c1aa9811a18cbd766f3da73da76eb920c6)
|
||||||
|
[#13344](https://github.com/npm/npm/pull/13344)
|
||||||
|
When running lifecycles use `TMPDIR` if it's writable and fall back to the
|
||||||
|
current working directory if not. Previously we just assumed `TMPDIR`
|
||||||
|
wouldn't be writable (as we might have been running as `nobody` and
|
||||||
|
`nobody` on some systems can't write to `TMPDIR`).
|
||||||
|
([@aaronjensen](https://github.com/aaronjensen))
|
||||||
|
|
||||||
|
#### SHRINKWRAP GIT & TAGGED DEPENDENCY FIX
|
||||||
|
|
||||||
|
* [`3b5eee0`](https://github.com/npm/npm/commit/3b5eee0d31737d1c2518ed95dcc7aaaaa93c253c)
|
||||||
|
[#13941](https://github.com/npm/npm/pull/13941)
|
||||||
|
Fix git and tagged dependency matching with shrinkwraps. Previously git
|
||||||
|
and tag (ie `foo@latest`) dependencies installed from a shrinkwrap would
|
||||||
|
always be flagged as invalid.
|
||||||
|
([@iarna](https://github.com/iarna))
|
||||||
|
|
||||||
|
#### BUG FIXES
|
||||||
|
|
||||||
|
* [`bf3bd1e`](https://github.com/npm/npm/commit/bf3bd1e4347ee2c5de08d23558c4444749178c8b)
|
||||||
|
[#14143](https://github.com/npm/npm/pull/14143)
|
||||||
|
Fix bug in `npm version` where `npm-shrinkwrap.json` wouldn't be updated
|
||||||
|
if you ran `npm version` from outside of your project root.
|
||||||
|
([@lholmquist](https://github.com/lholmquist))
|
||||||
|
* [`1089878`](https://github.com/npm/npm/commit/1089878f58977559414c8a9addfc69a9c68905b0)
|
||||||
|
[#13613](https://github.com/npm/npm/pull/13613)
|
||||||
|
Log 'skipping action' as 'verbose' instead of 'warn'. This removes a lot of
|
||||||
|
clutter when there are links in your `node_modules`. The long term plan is
|
||||||
|
to entirely blind `npm` to what's inside links, which will make this code
|
||||||
|
go away entirely.
|
||||||
|
([@timoxley](https://github.com/timoxley))
|
||||||
|
* [`952f1e1`](https://github.com/npm/npm/commit/952f1e109a070ab4066179f6104ba9394300e342)
|
||||||
|
[#13999](https://github.com/npm/npm/pull/13999)
|
||||||
|
Fix a bug where setting `bin` to `null` in your `package.json` would result
|
||||||
|
in `npm` crashing.
|
||||||
|
([@IonicaBizau](https://github.com/IonicaBizau))
|
||||||
|
* [`fcf8b11`](https://github.com/npm/npm/commit/fcf8b11fb7fcf8902f6a887c3d5f0aef2897dde0)
|
||||||
|
[#14032](https://github.com/npm/npm/pull/14032)
|
||||||
|
When using `npm view`, if you specified a version that didn't exist it
|
||||||
|
would previously print `undefined` (even if you asked for JSON output). It
|
||||||
|
now prints nothing in this situation. This brings `npm@3`'s behavior in
|
||||||
|
line with `npm@2`.
|
||||||
|
([@roblg](https://github.com/roblg))
|
||||||
|
* [`93c689f`](https://github.com/npm/npm/commit/93c689ff44c6042a2dcde7fe0d74d2264237d666)
|
||||||
|
[#14032](https://github.com/npm/npm/pull/14032)
|
||||||
|
When using `npm view --json` with a version range that matches multiple
|
||||||
|
versions we now return a list of all of the metadata for all of those
|
||||||
|
versions. Previously we picked one and only returned that. This brings
|
||||||
|
`npm@3`'s behavior in line with `npm@2`.
|
||||||
|
([@roblg](https://github.com/roblg))
|
||||||
|
* [`2411728`](https://github.com/npm/npm/commit/24117289e09c373b845150c45e4793d98fe7cf4b)
|
||||||
|
[#14045](https://github.com/npm/npm/pull/14045)
|
||||||
|
Fix a Windows-only bug in the `git` tests. The tests had rather particular
|
||||||
|
ideas about what arguments would be passed to `git` and on Windows they
|
||||||
|
got this wrong.
|
||||||
|
([@watilde](https://github.com/watilde))
|
||||||
|
|
||||||
|
#### DOCUMENTATION & MISC
|
||||||
|
|
||||||
|
* [`30772cc`](https://github.com/npm/npm/commit/30772cc5f80923bf21c003fbe53e5fed9d3a5d97)
|
||||||
|
[#13904](https://github.com/npm/npm/pull/13904)
|
||||||
|
Update `package.json` example to include GitHub branches.
|
||||||
|
([@stevokk](https://github.com/stevokk))
|
||||||
|
* [`f66876f`](https://github.com/npm/npm/commit/f66876f75c204fb78028cf2ff7979f80355bd06c)
|
||||||
|
[#14010](https://github.com/npm/npm/pull/14010)
|
||||||
|
Update the GitHub issue template to reflect Apple's change in name of its
|
||||||
|
desktop operating system.
|
||||||
|
([@AlexChesters](https://github.com/AlexChesters))
|
||||||
|
|
||||||
|
#### DEPENDENCY UPDATES
|
||||||
|
|
||||||
|
* [`b3f9bf1`](https://github.com/npm/npm/commit/b3f9bf1ada3f93e6775f5c232350030db6635d0c)
|
||||||
|
[#13918](https://github.com/npm/npm/issues/13918)
|
||||||
|
`graceful-fs@4.1.9`:
|
||||||
|
Fix the _uid must be an unsigned int_ bug that's been around forever but that
|
||||||
|
`npm` started tickling in v3.10.8.
|
||||||
|
([@addaleax](https://github.com/addaleax))
|
||||||
|
Also fixes wrapper to `fs.readdir` to actually pass through (rather than
|
||||||
|
drop) optional arguments.
|
||||||
|
([@isaacs](https://github.com/isaacs))
|
||||||
|
* [`9402ead`](https://github.com/npm/npm/commit/9402ead67e3be9b431ade637fbfac86204ee96fe)
|
||||||
|
[isaacs/node-glob#293](https://github.com/isaacs/node-glob/pull/293)
|
||||||
|
`glob@7.1.0`:
|
||||||
|
Add `absolute` option for `match` event.
|
||||||
|
([@phated](https://github.com/phated))
|
||||||
|
* [`58b83db`](https://github.com/npm/npm/commit/58b83db327dd87bf7cb5a7d503303537718f2f30)
|
||||||
|
`asap@2.0.5`
|
||||||
|
([@kriskowal](https://github.com/kriskowal))
|
||||||
|
* [`5707e6e`](https://github.com/npm/npm/commit/5707e6e55b220439c3f83e77daf4c70d72eb46f0)
|
||||||
|
`sorted-object@2.0.1`
|
||||||
|
([@domenic](https://github.com/domenic))
|
||||||
|
* [`9d20910`](https://github.com/npm/npm/commit/9d209107ce49a7424c50459284280cd2e6e215d1)
|
||||||
|
`request@2.75.0`
|
||||||
|
([@simov](https://github.com/simov))
|
||||||
|
* [`dea4848`](https://github.com/npm/npm/commit/dea48487a9d03492edc68670d05776d32d9ee8cf)
|
||||||
|
`path-is-inside@1.0.2`
|
||||||
|
([@domenic](https://github.com/domenic))
|
||||||
|
* [`b3f3db5`](https://github.com/npm/npm/commit/b3f3db52e864d607b6d9b18920e2f58acc4b1616)
|
||||||
|
`opener@1.4.2`
|
||||||
|
([@dominic](https://github.com/dominic))
|
||||||
|
* [`6bb5f95`](https://github.com/npm/npm/commit/6bb5f953888bbaaeeb624d623c2a9746d1c243a0)
|
||||||
|
`lockfile@1.0.2`
|
||||||
|
([@isaacs](https://github.com/isaacs))
|
||||||
|
* [`13f7c0a`](https://github.com/npm/npm/commit/13f7c0a73212284b53a2d96882fc298afbf9609c)
|
||||||
|
`config-chain@1.1.11`
|
||||||
|
([@dominictarr](https://github.com/dominictarr))
|
||||||
|
|
||||||
### v3.10.8 (2016-09-08)
|
### v3.10.8 (2016-09-08)
|
||||||
|
|
||||||
Monthly releases are so big! Just look at all this stuff!
|
Monthly releases are so big! Just look at all this stuff!
|
||||||
|
3
deps/npm/doc/files/package.json.md
vendored
3
deps/npm/doc/files/package.json.md
vendored
@ -472,7 +472,8 @@ included. For example:
|
|||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"express": "visionmedia/express",
|
"express": "visionmedia/express",
|
||||||
"mocha": "visionmedia/mocha#4727d357ea"
|
"mocha": "visionmedia/mocha#4727d357ea",
|
||||||
|
"module": "user/repo#feature\/branch"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/README.html
vendored
2
deps/npm/html/doc/README.html
vendored
@ -126,5 +126,5 @@ will no doubt tell you to put the output in a gist or email.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer"><a href="../doc/README.html">README</a> — npm@3.10.8</p>
|
<p id="footer"><a href="../doc/README.html">README</a> — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-access.html
vendored
2
deps/npm/html/doc/cli/npm-access.html
vendored
@ -84,5 +84,5 @@ with an HTTP 402 status code (logically enough), unless you use
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-access — npm@3.10.8</p>
|
<p id="footer">npm-access — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-adduser.html
vendored
2
deps/npm/html/doc/cli/npm-adduser.html
vendored
@ -72,5 +72,5 @@ over any global configuration.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-adduser — npm@3.10.8</p>
|
<p id="footer">npm-adduser — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-bin.html
vendored
2
deps/npm/html/doc/cli/npm-bin.html
vendored
@ -35,5 +35,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-bin — npm@3.10.8</p>
|
<p id="footer">npm-bin — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-bugs.html
vendored
2
deps/npm/html/doc/cli/npm-bugs.html
vendored
@ -55,5 +55,5 @@ a <code>package.json</code> in the current folder and use the <code>name</code>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-bugs — npm@3.10.8</p>
|
<p id="footer">npm-bugs — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-build.html
vendored
2
deps/npm/html/doc/cli/npm-build.html
vendored
@ -40,5 +40,5 @@ directly, run:</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-build — npm@3.10.8</p>
|
<p id="footer">npm-build — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-bundle.html
vendored
2
deps/npm/html/doc/cli/npm-bundle.html
vendored
@ -31,5 +31,5 @@ install packages into the local space.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-bundle — npm@3.10.8</p>
|
<p id="footer">npm-bundle — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-cache.html
vendored
2
deps/npm/html/doc/cli/npm-cache.html
vendored
@ -81,5 +81,5 @@ they do not make an HTTP request to the registry.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-cache — npm@3.10.8</p>
|
<p id="footer">npm-cache — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-completion.html
vendored
2
deps/npm/html/doc/cli/npm-completion.html
vendored
@ -43,5 +43,5 @@ completions based on the arguments.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-completion — npm@3.10.8</p>
|
<p id="footer">npm-completion — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-config.html
vendored
2
deps/npm/html/doc/cli/npm-config.html
vendored
@ -67,5 +67,5 @@ global config.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-config — npm@3.10.8</p>
|
<p id="footer">npm-config — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-dedupe.html
vendored
2
deps/npm/html/doc/cli/npm-dedupe.html
vendored
@ -61,5 +61,5 @@ result in new modules being installed.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-dedupe — npm@3.10.8</p>
|
<p id="footer">npm-dedupe — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-deprecate.html
vendored
2
deps/npm/html/doc/cli/npm-deprecate.html
vendored
@ -38,5 +38,5 @@ something like this:</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-deprecate — npm@3.10.8</p>
|
<p id="footer">npm-deprecate — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-dist-tag.html
vendored
2
deps/npm/html/doc/cli/npm-dist-tag.html
vendored
@ -87,5 +87,5 @@ begin with a number or the letter <code>v</code>.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-dist-tag — npm@3.10.8</p>
|
<p id="footer">npm-dist-tag — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-docs.html
vendored
2
deps/npm/html/doc/cli/npm-docs.html
vendored
@ -56,5 +56,5 @@ the current folder and use the <code>name</code> property.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-docs — npm@3.10.8</p>
|
<p id="footer">npm-docs — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-edit.html
vendored
2
deps/npm/html/doc/cli/npm-edit.html
vendored
@ -49,5 +49,5 @@ or <code>"notepad"</code> on Windows.</li>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-edit — npm@3.10.8</p>
|
<p id="footer">npm-edit — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-explore.html
vendored
2
deps/npm/html/doc/cli/npm-explore.html
vendored
@ -49,5 +49,5 @@ Windows</li>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-explore — npm@3.10.8</p>
|
<p id="footer">npm-explore — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-help-search.html
vendored
2
deps/npm/html/doc/cli/npm-help-search.html
vendored
@ -45,5 +45,5 @@ where the terms were found in the documentation.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-help-search — npm@3.10.8</p>
|
<p id="footer">npm-help-search — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-help.html
vendored
2
deps/npm/html/doc/cli/npm-help.html
vendored
@ -50,5 +50,5 @@ matches are equivalent to specifying a topic name.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-help — npm@3.10.8</p>
|
<p id="footer">npm-help — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-init.html
vendored
2
deps/npm/html/doc/cli/npm-init.html
vendored
@ -48,5 +48,5 @@ defaults and not prompt you for any options.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-init — npm@3.10.8</p>
|
<p id="footer">npm-init — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-install-test.html
vendored
2
deps/npm/html/doc/cli/npm-install-test.html
vendored
@ -42,5 +42,5 @@ takes exactly the same arguments as <code>npm install</code>.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-install-test — npm@3.10.8</p>
|
<p id="footer">npm-install-test — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-install.html
vendored
2
deps/npm/html/doc/cli/npm-install.html
vendored
@ -313,5 +313,5 @@ affects a real use-case, it will be investigated.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-install — npm@3.10.8</p>
|
<p id="footer">npm-install — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-link.html
vendored
2
deps/npm/html/doc/cli/npm-link.html
vendored
@ -74,5 +74,5 @@ include that scope, e.g.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-link — npm@3.10.8</p>
|
<p id="footer">npm-link — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-logout.html
vendored
2
deps/npm/html/doc/cli/npm-logout.html
vendored
@ -51,5 +51,5 @@ it takes precedence.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-logout — npm@3.10.8</p>
|
<p id="footer">npm-logout — npm@3.10.9</p>
|
||||||
|
|
||||||
|
4
deps/npm/html/doc/cli/npm-ls.html
vendored
4
deps/npm/html/doc/cli/npm-ls.html
vendored
@ -21,7 +21,7 @@ installed, as well as their dependencies, in a tree-structure.</p>
|
|||||||
limit the results to only the paths to the packages named. Note that
|
limit the results to only the paths to the packages named. Note that
|
||||||
nested packages will <em>also</em> show the paths to the specified packages.
|
nested packages will <em>also</em> show the paths to the specified packages.
|
||||||
For example, running <code>npm ls promzard</code> in npm's source tree will show:</p>
|
For example, running <code>npm ls promzard</code> in npm's source tree will show:</p>
|
||||||
<pre><code>npm@3.10.8 /path/to/npm
|
<pre><code>npm@3.10.9 /path/to/npm
|
||||||
└─┬ init-package-json@0.0.4
|
└─┬ init-package-json@0.0.4
|
||||||
└── promzard@0.1.5
|
└── promzard@0.1.5
|
||||||
</code></pre><p>It will print out extraneous, missing, and invalid packages.</p>
|
</code></pre><p>It will print out extraneous, missing, and invalid packages.</p>
|
||||||
@ -104,5 +104,5 @@ project.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-ls — npm@3.10.8</p>
|
<p id="footer">npm-ls — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-outdated.html
vendored
2
deps/npm/html/doc/cli/npm-outdated.html
vendored
@ -116,5 +116,5 @@ project.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-outdated — npm@3.10.8</p>
|
<p id="footer">npm-outdated — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-owner.html
vendored
2
deps/npm/html/doc/cli/npm-owner.html
vendored
@ -51,5 +51,5 @@ that is not implemented at this time.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-owner — npm@3.10.8</p>
|
<p id="footer">npm-owner — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-pack.html
vendored
2
deps/npm/html/doc/cli/npm-pack.html
vendored
@ -41,5 +41,5 @@ overwritten the second time.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-pack — npm@3.10.8</p>
|
<p id="footer">npm-pack — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-ping.html
vendored
2
deps/npm/html/doc/cli/npm-ping.html
vendored
@ -32,5 +32,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-ping — npm@3.10.8</p>
|
<p id="footer">npm-ping — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-prefix.html
vendored
2
deps/npm/html/doc/cli/npm-prefix.html
vendored
@ -38,5 +38,5 @@ to contain a package.json file unless <code>-g</code> is also specified.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-prefix — npm@3.10.8</p>
|
<p id="footer">npm-prefix — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-prune.html
vendored
2
deps/npm/html/doc/cli/npm-prune.html
vendored
@ -40,5 +40,5 @@ negate <code>NODE_ENV</code> being set to <code>production</code>.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-prune — npm@3.10.8</p>
|
<p id="footer">npm-prune — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-publish.html
vendored
2
deps/npm/html/doc/cli/npm-publish.html
vendored
@ -76,5 +76,5 @@ packs them into a tarball to be uploaded to the registry.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-publish — npm@3.10.8</p>
|
<p id="footer">npm-publish — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-rebuild.html
vendored
2
deps/npm/html/doc/cli/npm-rebuild.html
vendored
@ -35,5 +35,5 @@ the new binary.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-rebuild — npm@3.10.8</p>
|
<p id="footer">npm-rebuild — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-repo.html
vendored
2
deps/npm/html/doc/cli/npm-repo.html
vendored
@ -41,5 +41,5 @@ a <code>package.json</code> in the current folder and use the <code>name</code>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-repo — npm@3.10.8</p>
|
<p id="footer">npm-repo — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-restart.html
vendored
2
deps/npm/html/doc/cli/npm-restart.html
vendored
@ -53,5 +53,5 @@ behavior will be accompanied by an increase in major version number</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-restart — npm@3.10.8</p>
|
<p id="footer">npm-restart — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-root.html
vendored
2
deps/npm/html/doc/cli/npm-root.html
vendored
@ -35,5 +35,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-root — npm@3.10.8</p>
|
<p id="footer">npm-root — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-run-script.html
vendored
2
deps/npm/html/doc/cli/npm-run-script.html
vendored
@ -63,5 +63,5 @@ you will be given a warning to run <code>npm install</code>, just in case you
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-run-script — npm@3.10.8</p>
|
<p id="footer">npm-run-script — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-search.html
vendored
2
deps/npm/html/doc/cli/npm-search.html
vendored
@ -57,5 +57,5 @@ Pass a different registry url such as the default above in order to override thi
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-search — npm@3.10.8</p>
|
<p id="footer">npm-search — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-shrinkwrap.html
vendored
2
deps/npm/html/doc/cli/npm-shrinkwrap.html
vendored
@ -176,5 +176,5 @@ contents rather than versions.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-shrinkwrap — npm@3.10.8</p>
|
<p id="footer">npm-shrinkwrap — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-star.html
vendored
2
deps/npm/html/doc/cli/npm-star.html
vendored
@ -36,5 +36,5 @@ a vaguely positive way to show that you care.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-star — npm@3.10.8</p>
|
<p id="footer">npm-star — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-stars.html
vendored
2
deps/npm/html/doc/cli/npm-stars.html
vendored
@ -36,5 +36,5 @@ you will most certainly enjoy this command.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-stars — npm@3.10.8</p>
|
<p id="footer">npm-stars — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-start.html
vendored
2
deps/npm/html/doc/cli/npm-start.html
vendored
@ -39,5 +39,5 @@ more details.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-start — npm@3.10.8</p>
|
<p id="footer">npm-start — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-stop.html
vendored
2
deps/npm/html/doc/cli/npm-stop.html
vendored
@ -34,5 +34,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-stop — npm@3.10.8</p>
|
<p id="footer">npm-stop — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-tag.html
vendored
2
deps/npm/html/doc/cli/npm-tag.html
vendored
@ -63,5 +63,5 @@ that do not begin with a number or the letter <code>v</code>.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-tag — npm@3.10.8</p>
|
<p id="footer">npm-tag — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-team.html
vendored
2
deps/npm/html/doc/cli/npm-team.html
vendored
@ -67,5 +67,5 @@ use the <code>npm access</code> command to grant or revoke the appropriate permi
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-team — npm@3.10.8</p>
|
<p id="footer">npm-team — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-test.html
vendored
2
deps/npm/html/doc/cli/npm-test.html
vendored
@ -38,5 +38,5 @@ true.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-test — npm@3.10.8</p>
|
<p id="footer">npm-test — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-uninstall.html
vendored
2
deps/npm/html/doc/cli/npm-uninstall.html
vendored
@ -60,5 +60,5 @@ npm uninstall dtrace-provider --save-optional
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-uninstall — npm@3.10.8</p>
|
<p id="footer">npm-uninstall — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-unpublish.html
vendored
2
deps/npm/html/doc/cli/npm-unpublish.html
vendored
@ -47,5 +47,5 @@ package again, a new version number must be used.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-unpublish — npm@3.10.8</p>
|
<p id="footer">npm-unpublish — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-update.html
vendored
2
deps/npm/html/doc/cli/npm-update.html
vendored
@ -118,5 +118,5 @@ be <em>downgraded</em>.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-update — npm@3.10.8</p>
|
<p id="footer">npm-update — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-version.html
vendored
2
deps/npm/html/doc/cli/npm-version.html
vendored
@ -100,5 +100,5 @@ and tag up to the server, and deletes the <code>build/temp</code> directory.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-version — npm@3.10.8</p>
|
<p id="footer">npm-version — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-view.html
vendored
2
deps/npm/html/doc/cli/npm-view.html
vendored
@ -86,5 +86,5 @@ the field name.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-view — npm@3.10.8</p>
|
<p id="footer">npm-view — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/cli/npm-whoami.html
vendored
2
deps/npm/html/doc/cli/npm-whoami.html
vendored
@ -33,5 +33,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-whoami — npm@3.10.8</p>
|
<p id="footer">npm-whoami — npm@3.10.9</p>
|
||||||
|
|
||||||
|
6
deps/npm/html/doc/cli/npm.html
vendored
6
deps/npm/html/doc/cli/npm.html
vendored
@ -13,7 +13,7 @@
|
|||||||
<h2 id="synopsis">SYNOPSIS</h2>
|
<h2 id="synopsis">SYNOPSIS</h2>
|
||||||
<pre><code>npm <command> [args]
|
<pre><code>npm <command> [args]
|
||||||
</code></pre><h2 id="version">VERSION</h2>
|
</code></pre><h2 id="version">VERSION</h2>
|
||||||
<p>3.10.8</p>
|
<p>3.10.9</p>
|
||||||
<h2 id="description">DESCRIPTION</h2>
|
<h2 id="description">DESCRIPTION</h2>
|
||||||
<p>npm is the package manager for the Node JavaScript platform. It puts
|
<p>npm is the package manager for the Node JavaScript platform. It puts
|
||||||
modules in place so that node can find them, and manages dependency
|
modules in place so that node can find them, and manages dependency
|
||||||
@ -126,7 +126,7 @@ will no doubt tell you to put the output in a gist or email.</p>
|
|||||||
<p><a href="http://blog.izs.me/">Isaac Z. Schlueter</a> ::
|
<p><a href="http://blog.izs.me/">Isaac Z. Schlueter</a> ::
|
||||||
<a href="https://github.com/isaacs/">isaacs</a> ::
|
<a href="https://github.com/isaacs/">isaacs</a> ::
|
||||||
<a href="http://twitter.com/izs">@izs</a> ::
|
<a href="http://twitter.com/izs">@izs</a> ::
|
||||||
<a href="mailto:i@izs.me">i@izs.me</a></p>
|
<a href="mailto:i@izs.me">i@izs.me</a></p>
|
||||||
<h2 id="see-also">SEE ALSO</h2>
|
<h2 id="see-also">SEE ALSO</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../cli/npm-help.html">npm-help(1)</a></li>
|
<li><a href="../cli/npm-help.html">npm-help(1)</a></li>
|
||||||
@ -150,5 +150,5 @@ will no doubt tell you to put the output in a gist or email.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm — npm@3.10.8</p>
|
<p id="footer">npm — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/files/npm-folders.html
vendored
2
deps/npm/html/doc/files/npm-folders.html
vendored
@ -182,5 +182,5 @@ cannot be found elsewhere. See <code><a href="../files/package.json.html">packa
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-folders — npm@3.10.8</p>
|
<p id="footer">npm-folders — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/files/npm-global.html
vendored
2
deps/npm/html/doc/files/npm-global.html
vendored
@ -182,5 +182,5 @@ cannot be found elsewhere. See <code><a href="../files/package.json.html">packa
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-folders — npm@3.10.8</p>
|
<p id="footer">npm-folders — npm@3.10.9</p>
|
||||||
|
|
||||||
|
5
deps/npm/html/doc/files/npm-json.html
vendored
5
deps/npm/html/doc/files/npm-json.html
vendored
@ -358,7 +358,8 @@ included. For example:</p>
|
|||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"express": "visionmedia/express",
|
"express": "visionmedia/express",
|
||||||
"mocha": "visionmedia/mocha#4727d357ea"
|
"mocha": "visionmedia/mocha#4727d357ea",
|
||||||
|
"module": "user/repo#feature\/branch"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</code></pre><h2 id="local-paths">Local Paths</h2>
|
</code></pre><h2 id="local-paths">Local Paths</h2>
|
||||||
@ -585,5 +586,5 @@ ignored.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">package.json — npm@3.10.8</p>
|
<p id="footer">package.json — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/files/npmrc.html
vendored
2
deps/npm/html/doc/files/npmrc.html
vendored
@ -89,5 +89,5 @@ manner.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npmrc — npm@3.10.8</p>
|
<p id="footer">npmrc — npm@3.10.9</p>
|
||||||
|
|
||||||
|
5
deps/npm/html/doc/files/package.json.html
vendored
5
deps/npm/html/doc/files/package.json.html
vendored
@ -358,7 +358,8 @@ included. For example:</p>
|
|||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"express": "visionmedia/express",
|
"express": "visionmedia/express",
|
||||||
"mocha": "visionmedia/mocha#4727d357ea"
|
"mocha": "visionmedia/mocha#4727d357ea",
|
||||||
|
"module": "user/repo#feature\/branch"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</code></pre><h2 id="local-paths">Local Paths</h2>
|
</code></pre><h2 id="local-paths">Local Paths</h2>
|
||||||
@ -585,5 +586,5 @@ ignored.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">package.json — npm@3.10.8</p>
|
<p id="footer">package.json — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/index.html
vendored
2
deps/npm/html/doc/index.html
vendored
@ -162,5 +162,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-index — npm@3.10.8</p>
|
<p id="footer">npm-index — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/misc/npm-coding-style.html
vendored
2
deps/npm/html/doc/misc/npm-coding-style.html
vendored
@ -153,5 +153,5 @@ set to anything."</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-coding-style — npm@3.10.8</p>
|
<p id="footer">npm-coding-style — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/misc/npm-config.html
vendored
2
deps/npm/html/doc/misc/npm-config.html
vendored
@ -864,5 +864,5 @@ exit successfully.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-config — npm@3.10.8</p>
|
<p id="footer">npm-config — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/misc/npm-developers.html
vendored
2
deps/npm/html/doc/misc/npm-developers.html
vendored
@ -194,5 +194,5 @@ from a fresh checkout.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-developers — npm@3.10.8</p>
|
<p id="footer">npm-developers — npm@3.10.9</p>
|
||||||
|
|
||||||
|
8
deps/npm/html/doc/misc/npm-disputes.html
vendored
8
deps/npm/html/doc/misc/npm-disputes.html
vendored
@ -13,7 +13,7 @@
|
|||||||
<h2 id="synopsis">SYNOPSIS</h2>
|
<h2 id="synopsis">SYNOPSIS</h2>
|
||||||
<ol>
|
<ol>
|
||||||
<li>Get the author email with <code>npm owner ls <pkgname></code></li>
|
<li>Get the author email with <code>npm owner ls <pkgname></code></li>
|
||||||
<li>Email the author, CC <a href="mailto:support@npmjs.com">support@npmjs.com</a></li>
|
<li>Email the author, CC <a href="mailto:support@npmjs.com">support@npmjs.com</a></li>
|
||||||
<li>After a few weeks, if there's no resolution, we'll sort it out.</li>
|
<li>After a few weeks, if there's no resolution, we'll sort it out.</li>
|
||||||
</ol>
|
</ol>
|
||||||
<p>Don't squat on package names. Publish code or move out of the way.</p>
|
<p>Don't squat on package names. Publish code or move out of the way.</p>
|
||||||
@ -51,12 +51,12 @@ Joe's appropriate course of action in each case is the same.</p>
|
|||||||
owner (Bob).</li>
|
owner (Bob).</li>
|
||||||
<li>Joe emails Bob, explaining the situation <strong>as respectfully as
|
<li>Joe emails Bob, explaining the situation <strong>as respectfully as
|
||||||
possible</strong>, and what he would like to do with the module name. He
|
possible</strong>, and what he would like to do with the module name. He
|
||||||
adds the npm support staff <a href="mailto:support@npmjs.com">support@npmjs.com</a> to the CC list of
|
adds the npm support staff <a href="mailto:support@npmjs.com">support@npmjs.com</a> to the CC list of
|
||||||
the email. Mention in the email that Bob can run <code>npm owner add
|
the email. Mention in the email that Bob can run <code>npm owner add
|
||||||
joe foo</code> to add Joe as an owner of the <code>foo</code> package.</li>
|
joe foo</code> to add Joe as an owner of the <code>foo</code> package.</li>
|
||||||
<li>After a reasonable amount of time, if Bob has not responded, or if
|
<li>After a reasonable amount of time, if Bob has not responded, or if
|
||||||
Bob and Joe can't come to any sort of resolution, email support
|
Bob and Joe can't come to any sort of resolution, email support
|
||||||
<a href="mailto:support@npmjs.com">support@npmjs.com</a> and we'll sort it out. ("Reasonable" is
|
<a href="mailto:support@npmjs.com">support@npmjs.com</a> and we'll sort it out. ("Reasonable" is
|
||||||
usually at least 4 weeks, but extra time is allowed around common
|
usually at least 4 weeks, but extra time is allowed around common
|
||||||
holidays.)</li>
|
holidays.)</li>
|
||||||
</ol>
|
</ol>
|
||||||
@ -112,5 +112,5 @@ things into it.</li>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-disputes — npm@3.10.8</p>
|
<p id="footer">npm-disputes — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/misc/npm-index.html
vendored
2
deps/npm/html/doc/misc/npm-index.html
vendored
@ -162,5 +162,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-index — npm@3.10.8</p>
|
<p id="footer">npm-index — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/misc/npm-orgs.html
vendored
2
deps/npm/html/doc/misc/npm-orgs.html
vendored
@ -86,5 +86,5 @@
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-orgs — npm@3.10.8</p>
|
<p id="footer">npm-orgs — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/misc/npm-registry.html
vendored
2
deps/npm/html/doc/misc/npm-registry.html
vendored
@ -70,5 +70,5 @@ effectively implement the entire CouchDB API anyway.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-registry — npm@3.10.8</p>
|
<p id="footer">npm-registry — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/misc/npm-scope.html
vendored
2
deps/npm/html/doc/misc/npm-scope.html
vendored
@ -94,5 +94,5 @@ that registry instead.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-scope — npm@3.10.8</p>
|
<p id="footer">npm-scope — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/misc/npm-scripts.html
vendored
2
deps/npm/html/doc/misc/npm-scripts.html
vendored
@ -213,5 +213,5 @@ scripts is for compilation which must be done on the target architecture.</li>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">npm-scripts — npm@3.10.8</p>
|
<p id="footer">npm-scripts — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/misc/removing-npm.html
vendored
2
deps/npm/html/doc/misc/removing-npm.html
vendored
@ -57,5 +57,5 @@ modules. To track those down, you can do the following:</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">removing-npm — npm@3.10.8</p>
|
<p id="footer">removing-npm — npm@3.10.9</p>
|
||||||
|
|
||||||
|
2
deps/npm/html/doc/misc/semver.html
vendored
2
deps/npm/html/doc/misc/semver.html
vendored
@ -325,5 +325,5 @@ range, use the <code>satisfies(version, range)</code> function.</p>
|
|||||||
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
|
||||||
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
|
||||||
</table>
|
</table>
|
||||||
<p id="footer">semver — npm@3.10.8</p>
|
<p id="footer">semver — npm@3.10.9</p>
|
||||||
|
|
||||||
|
9
deps/npm/lib/install/decompose-actions.js
vendored
9
deps/npm/lib/install/decompose-actions.js
vendored
@ -10,9 +10,11 @@ module.exports = function (differences, decomposed, next) {
|
|||||||
var pkg = action[1]
|
var pkg = action[1]
|
||||||
switch (cmd) {
|
switch (cmd) {
|
||||||
case 'add':
|
case 'add':
|
||||||
case 'update':
|
|
||||||
addSteps(decomposed, pkg, done)
|
addSteps(decomposed, pkg, done)
|
||||||
break
|
break
|
||||||
|
case 'update':
|
||||||
|
updateSteps(decomposed, pkg, done)
|
||||||
|
break
|
||||||
case 'move':
|
case 'move':
|
||||||
moveSteps(decomposed, pkg, done)
|
moveSteps(decomposed, pkg, done)
|
||||||
break
|
break
|
||||||
@ -40,6 +42,11 @@ function addSteps (decomposed, pkg, done) {
|
|||||||
done()
|
done()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateSteps (decomposed, pkg, done) {
|
||||||
|
decomposed.push(['remove', pkg])
|
||||||
|
addSteps(decomposed, pkg, done)
|
||||||
|
}
|
||||||
|
|
||||||
function moveSteps (decomposed, pkg, done) {
|
function moveSteps (decomposed, pkg, done) {
|
||||||
decomposed.push(['move', pkg])
|
decomposed.push(['move', pkg])
|
||||||
decomposed.push(['build', pkg])
|
decomposed.push(['build', pkg])
|
||||||
|
23
deps/npm/lib/install/deps.js
vendored
23
deps/npm/lib/install/deps.js
vendored
@ -64,11 +64,26 @@ function doesChildVersionMatch (child, requested, requestor) {
|
|||||||
if (requested.spec === '*') return true
|
if (requested.spec === '*') return true
|
||||||
|
|
||||||
var childReq = child.package._requested
|
var childReq = child.package._requested
|
||||||
|
if (!childReq) childReq = npa(moduleName(child) + '@' + child.package._from)
|
||||||
if (childReq) {
|
if (childReq) {
|
||||||
if (childReq.rawSpec === requested.rawSpec) return true
|
if (childReq.rawSpec === requested.rawSpec) return true
|
||||||
if (childReq.type === requested.type && childReq.spec === requested.spec) return true
|
if (childReq.type === requested.type && childReq.spec === requested.spec) return true
|
||||||
}
|
}
|
||||||
if (!registryTypes[requested.type]) return requested.rawSpec === child.package._from
|
// If _requested didn't exist OR if it didn't match then we'll try using
|
||||||
|
// _from. We pass it through npa to normalize the specifier.
|
||||||
|
// This can happen when installing from an `npm-shrinkwrap.json` where `_requested` will
|
||||||
|
// be the tarball URL from `resolved` and thus can't match what's in the `package.json`.
|
||||||
|
// In those cases _from, will be preserved and we can compare that to ensure that they
|
||||||
|
// really came from the same sources.
|
||||||
|
// You'll see this scenario happen with at least tags and git dependencies.
|
||||||
|
if (!registryTypes[requested.type]) {
|
||||||
|
if (child.package._from) {
|
||||||
|
var fromReq = npa(child.package._from)
|
||||||
|
if (fromReq.rawSpec === requested.rawSpec) return true
|
||||||
|
if (fromReq.type === requested.type && fromReq.spec === requested.spec) return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
return semver.satisfies(child.package.version, requested.spec)
|
return semver.satisfies(child.package.version, requested.spec)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -597,13 +612,13 @@ var earliestInstallable = exports.earliestInstallable = function (requiredBy, tr
|
|||||||
|
|
||||||
// If any of the children of this tree have conflicting
|
// If any of the children of this tree have conflicting
|
||||||
// binaries then we need to decline to install this package here.
|
// binaries then we need to decline to install this package here.
|
||||||
var binaryMatches = typeof pkg.bin === 'object' && tree.children.some(function (child) {
|
var binaryMatches = pkg.bin && tree.children.some(function (child) {
|
||||||
if (child.removed) return false
|
if (child.removed || !child.package.bin) return false
|
||||||
if (typeof child.package.bin !== 'object') return false
|
|
||||||
return Object.keys(child.package.bin).some(function (bin) {
|
return Object.keys(child.package.bin).some(function (bin) {
|
||||||
return pkg.bin[bin]
|
return pkg.bin[bin]
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
if (binaryMatches) return null
|
if (binaryMatches) return null
|
||||||
|
|
||||||
// if this tree location requested the same module then we KNOW it
|
// if this tree location requested the same module then we KNOW it
|
||||||
|
@ -24,7 +24,7 @@ module.exports = function (top, differences, next) {
|
|||||||
if (pkg.isInLink || (pkg.parent && (pkg.parent.target || pkg.parent.isLink))) {
|
if (pkg.isInLink || (pkg.parent && (pkg.parent.target || pkg.parent.isLink))) {
|
||||||
// we want to skip warning if this is a child of another module that we're removing
|
// we want to skip warning if this is a child of another module that we're removing
|
||||||
if (!pkg.parent.removing) {
|
if (!pkg.parent.removing) {
|
||||||
log.warn('skippingAction', 'Module is inside a symlinked module: not running ' +
|
log.verbose('skippingAction', 'Module is inside a symlinked module: not running ' +
|
||||||
cmd + ' ' + packageId(pkg) + ' ' + path.relative(top, pkg.path))
|
cmd + ' ' + packageId(pkg) + ' ' + path.relative(top, pkg.path))
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
9
deps/npm/lib/shrinkwrap.js
vendored
9
deps/npm/lib/shrinkwrap.js
vendored
@ -35,26 +35,25 @@ function shrinkwrap (args, silent, cb) {
|
|||||||
log.warn('shrinkwrap', "doesn't take positional args")
|
log.warn('shrinkwrap', "doesn't take positional args")
|
||||||
}
|
}
|
||||||
|
|
||||||
var dir = path.resolve(npm.dir, '..')
|
|
||||||
var packagePath = path.join(npm.localPrefix, 'package.json')
|
var packagePath = path.join(npm.localPrefix, 'package.json')
|
||||||
var dev = !!npm.config.get('dev') || /^dev(elopment)?$/.test(npm.config.get('also'))
|
var dev = !!npm.config.get('dev') || /^dev(elopment)?$/.test(npm.config.get('also'))
|
||||||
|
|
||||||
readPackageJson(packagePath, iferr(cb, function (pkg) {
|
readPackageJson(packagePath, iferr(cb, function (pkg) {
|
||||||
createShrinkwrap(dir, pkg, dev, silent, cb)
|
createShrinkwrap(npm.localPrefix, pkg, dev, silent, cb)
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports.createShrinkwrap = createShrinkwrap
|
module.exports.createShrinkwrap = createShrinkwrap
|
||||||
|
|
||||||
function createShrinkwrap (dir, pkg, dev, silent, cb) {
|
function createShrinkwrap (dir, pkg, dev, silent, cb) {
|
||||||
lifecycle(pkg, 'preshrinkwrap', function () {
|
lifecycle(pkg, 'preshrinkwrap', dir, function () {
|
||||||
readPackageTree(dir, andRecalculateMetadata(iferr(cb, function (tree) {
|
readPackageTree(dir, andRecalculateMetadata(iferr(cb, function (tree) {
|
||||||
var pkginfo = treeToShrinkwrap(tree, dev)
|
var pkginfo = treeToShrinkwrap(tree, dev)
|
||||||
|
|
||||||
chain([
|
chain([
|
||||||
[lifecycle, tree.package, 'shrinkwrap'],
|
[lifecycle, tree.package, 'shrinkwrap', dir],
|
||||||
[shrinkwrap_, pkginfo, silent],
|
[shrinkwrap_, pkginfo, silent],
|
||||||
[lifecycle, tree.package, 'postshrinkwrap']
|
[lifecycle, tree.package, 'postshrinkwrap', dir]
|
||||||
], iferr(cb, function (data) {
|
], iferr(cb, function (data) {
|
||||||
cb(null, data[0])
|
cb(null, data[0])
|
||||||
}))
|
}))
|
||||||
|
2
deps/npm/lib/version.js
vendored
2
deps/npm/lib/version.js
vendored
@ -263,7 +263,7 @@ function _commit (version, localData, cb) {
|
|||||||
chain(
|
chain(
|
||||||
[
|
[
|
||||||
git.chainableExec([ 'add', packagePath ], options),
|
git.chainableExec([ 'add', packagePath ], options),
|
||||||
localData.hasShrinkwrap && git.chainableExec([ 'add', 'npm-shrinkwrap.json' ], options),
|
localData.hasShrinkwrap && git.chainableExec([ 'add', path.join(npm.localPrefix, 'npm-shrinkwrap.json') ], options),
|
||||||
git.chainableExec([ 'commit', '-m', message ], options),
|
git.chainableExec([ 'commit', '-m', message ], options),
|
||||||
!localData.existingTag && git.chainableExec([
|
!localData.existingTag && git.chainableExec([
|
||||||
'tag',
|
'tag',
|
||||||
|
4
deps/npm/lib/view.js
vendored
4
deps/npm/lib/view.js
vendored
@ -273,16 +273,18 @@ function printData (data, name, cb) {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if (npm.config.get('json')) {
|
||||||
if (msgJson.length && Object.keys(msgJson[0]).length === 1) {
|
if (msgJson.length && Object.keys(msgJson[0]).length === 1) {
|
||||||
var k = Object.keys(msgJson[0])[0]
|
var k = Object.keys(msgJson[0])[0]
|
||||||
msgJson = msgJson.map(function (m) { return m[k] })
|
msgJson = msgJson.map(function (m) { return m[k] })
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!msg) {
|
if (msgJson.length === 1) {
|
||||||
msg = JSON.stringify(msgJson[0], null, 2) + '\n'
|
msg = JSON.stringify(msgJson[0], null, 2) + '\n'
|
||||||
} else if (msgJson.length > 1) {
|
} else if (msgJson.length > 1) {
|
||||||
msg = JSON.stringify(msgJson, null, 2) + '\n'
|
msg = JSON.stringify(msgJson, null, 2) + '\n'
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// preserve output symmetry by adding a whitespace-only line at the end if
|
// preserve output symmetry by adding a whitespace-only line at the end if
|
||||||
// there's one at the beginning
|
// there's one at the beginning
|
||||||
|
2
deps/npm/man/man1/npm-README.1
vendored
2
deps/npm/man/man1/npm-README.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM" "1" "September 2016" "" ""
|
.TH "NPM" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm\fR \- a JavaScript package manager
|
\fBnpm\fR \- a JavaScript package manager
|
||||||
.P
|
.P
|
||||||
|
2
deps/npm/man/man1/npm-access.1
vendored
2
deps/npm/man/man1/npm-access.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-ACCESS" "1" "September 2016" "" ""
|
.TH "NPM\-ACCESS" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-access\fR \- Set access level on published packages
|
\fBnpm-access\fR \- Set access level on published packages
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-adduser.1
vendored
2
deps/npm/man/man1/npm-adduser.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-ADDUSER" "1" "September 2016" "" ""
|
.TH "NPM\-ADDUSER" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-adduser\fR \- Add a registry user account
|
\fBnpm-adduser\fR \- Add a registry user account
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-bin.1
vendored
2
deps/npm/man/man1/npm-bin.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-BIN" "1" "September 2016" "" ""
|
.TH "NPM\-BIN" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-bin\fR \- Display npm bin folder
|
\fBnpm-bin\fR \- Display npm bin folder
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-bugs.1
vendored
2
deps/npm/man/man1/npm-bugs.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-BUGS" "1" "September 2016" "" ""
|
.TH "NPM\-BUGS" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-bugs\fR \- Bugs for a package in a web browser maybe
|
\fBnpm-bugs\fR \- Bugs for a package in a web browser maybe
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-build.1
vendored
2
deps/npm/man/man1/npm-build.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-BUILD" "1" "September 2016" "" ""
|
.TH "NPM\-BUILD" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-build\fR \- Build a package
|
\fBnpm-build\fR \- Build a package
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-bundle.1
vendored
2
deps/npm/man/man1/npm-bundle.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-BUNDLE" "1" "September 2016" "" ""
|
.TH "NPM\-BUNDLE" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-bundle\fR \- REMOVED
|
\fBnpm-bundle\fR \- REMOVED
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
|
2
deps/npm/man/man1/npm-cache.1
vendored
2
deps/npm/man/man1/npm-cache.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-CACHE" "1" "September 2016" "" ""
|
.TH "NPM\-CACHE" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-cache\fR \- Manipulates packages cache
|
\fBnpm-cache\fR \- Manipulates packages cache
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-completion.1
vendored
2
deps/npm/man/man1/npm-completion.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-COMPLETION" "1" "September 2016" "" ""
|
.TH "NPM\-COMPLETION" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-completion\fR \- Tab Completion for npm
|
\fBnpm-completion\fR \- Tab Completion for npm
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-config.1
vendored
2
deps/npm/man/man1/npm-config.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-CONFIG" "1" "September 2016" "" ""
|
.TH "NPM\-CONFIG" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-config\fR \- Manage the npm configuration files
|
\fBnpm-config\fR \- Manage the npm configuration files
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-dedupe.1
vendored
2
deps/npm/man/man1/npm-dedupe.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-DEDUPE" "1" "September 2016" "" ""
|
.TH "NPM\-DEDUPE" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-dedupe\fR \- Reduce duplication
|
\fBnpm-dedupe\fR \- Reduce duplication
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-deprecate.1
vendored
2
deps/npm/man/man1/npm-deprecate.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-DEPRECATE" "1" "September 2016" "" ""
|
.TH "NPM\-DEPRECATE" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-deprecate\fR \- Deprecate a version of a package
|
\fBnpm-deprecate\fR \- Deprecate a version of a package
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-dist-tag.1
vendored
2
deps/npm/man/man1/npm-dist-tag.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-DIST\-TAG" "1" "September 2016" "" ""
|
.TH "NPM\-DIST\-TAG" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-dist-tag\fR \- Modify package distribution tags
|
\fBnpm-dist-tag\fR \- Modify package distribution tags
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-docs.1
vendored
2
deps/npm/man/man1/npm-docs.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-DOCS" "1" "September 2016" "" ""
|
.TH "NPM\-DOCS" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-docs\fR \- Docs for a package in a web browser maybe
|
\fBnpm-docs\fR \- Docs for a package in a web browser maybe
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-edit.1
vendored
2
deps/npm/man/man1/npm-edit.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-EDIT" "1" "September 2016" "" ""
|
.TH "NPM\-EDIT" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-edit\fR \- Edit an installed package
|
\fBnpm-edit\fR \- Edit an installed package
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-explore.1
vendored
2
deps/npm/man/man1/npm-explore.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-EXPLORE" "1" "September 2016" "" ""
|
.TH "NPM\-EXPLORE" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-explore\fR \- Browse an installed package
|
\fBnpm-explore\fR \- Browse an installed package
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-help-search.1
vendored
2
deps/npm/man/man1/npm-help-search.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-HELP\-SEARCH" "1" "September 2016" "" ""
|
.TH "NPM\-HELP\-SEARCH" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-help-search\fR \- Search npm help documentation
|
\fBnpm-help-search\fR \- Search npm help documentation
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-help.1
vendored
2
deps/npm/man/man1/npm-help.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-HELP" "1" "September 2016" "" ""
|
.TH "NPM\-HELP" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-help\fR \- Get help on npm
|
\fBnpm-help\fR \- Get help on npm
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-init.1
vendored
2
deps/npm/man/man1/npm-init.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-INIT" "1" "September 2016" "" ""
|
.TH "NPM\-INIT" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-init\fR \- Interactively create a package\.json file
|
\fBnpm-init\fR \- Interactively create a package\.json file
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-install-test.1
vendored
2
deps/npm/man/man1/npm-install-test.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM" "" "September 2016" "" ""
|
.TH "NPM" "" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm\fR
|
\fBnpm\fR
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
deps/npm/man/man1/npm-install.1
vendored
2
deps/npm/man/man1/npm-install.1
vendored
@ -1,4 +1,4 @@
|
|||||||
.TH "NPM\-INSTALL" "1" "September 2016" "" ""
|
.TH "NPM\-INSTALL" "1" "October 2016" "" ""
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBnpm-install\fR \- Install a package
|
\fBnpm-install\fR \- Install a package
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user