Skip to content

Commit cc8376a

Browse files
committed
deps: upgrade npm to 2.7.6
PR-URL: #1390 Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent f0bf6bb commit cc8376a

File tree

287 files changed

+6333
-8343
lines changed

Some content is hidden

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

287 files changed

+6333
-8343
lines changed

deps/npm/.mailmap

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
Arlo Breault <[email protected]>
21
Alex K. Wolfe <[email protected]>
32
Andrew Bradley <[email protected]>
43
Andrew Lunny <[email protected]>
4+
Arlo Breault <[email protected]>
55
Benjamin Coe <[email protected]>
66
77
Charlie Robbins <[email protected]>
88
Dalmais Maxence <[email protected]>
99
David Beitey <[email protected]>
1010
Domenic Denicola <[email protected]>
1111
Einar Otto Stangvik <[email protected]>
12-
1312
13+
1414
Faiq Raza <[email protected]>
1515
Forbes Lindesay <[email protected]>
1616
@@ -22,16 +22,20 @@ Jake Verbaten <[email protected]>
2222
James Sanders <[email protected]>
2323
Jason Smith <[email protected]>
2424
Jonas Weber <[email protected]>
25+
Julien Meddah <[email protected]>
2526
Kris Windham <[email protected]>
2627
Lin Clark <[email protected]>
2728
28-
29-
Maxim Bogushevich <[email protected]>
3029
Max Goodman <[email protected]>
30+
Maxim Bogushevich <[email protected]>
31+
3132
Nicolas Morel <[email protected]>
3233
Olivier Melcher <[email protected]>
34+
Ra'Shaun Stovall <[email protected]>
35+
3336
Ryan Emery <[email protected]>
3437
Sam Mikes <[email protected]>
38+
Takaya Kobayashi <[email protected]>
3539
3640
Visnu Pitiyanuvath <[email protected]>
3741
Will Elwood <[email protected]>

deps/npm/.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
- DEPLOY_VERSION=testing
99
before_install:
1010
- "npm config set spin false"
11-
- "npm install -g npm@~2"
11+
- "npm install -g npm/npm"
1212
- "sudo mkdir -p /var/run/couchdb"
1313
script: "npm run-script test-all"
1414
notifications:

deps/npm/AUTHORS

+5-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Chulki Lee <[email protected]>
201201
dead_horse <[email protected]>
202202
Kenan Yildirim <[email protected]>
203203
Laurie Voss <[email protected]>
204-
Rebecca Turner <turner@mikomi.org>
204+
Rebecca Turner <me@re-becca.org>
205205
Hunter Loftis <[email protected]>
206206
Peter Richardson <[email protected]>
207207
Jussi Kalliokoski <[email protected]>
@@ -264,3 +264,7 @@ Oli Evans <[email protected]>
264264
Matt Brennan <[email protected]>
265265
Jeff Barczewski <[email protected]>
266266
Danny Fritz <[email protected]>
267+
Takaya Kobayashi <[email protected]>
268+
Ra'Shaun Stovall <[email protected]>
269+
Julien Meddah <[email protected]>
270+
Michiel Sikma <[email protected]>

deps/npm/CHANGELOG.md

+102-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,111 @@
1+
### v2.7.6 (2015-04-02):
2+
3+
#### GIT MEAN, GIT TUFF, GIT ALL THE WAY AWAY FROM MY STUFF
4+
5+
Part of the reason that we're reluctant to take patches to how npm deals with
6+
git dependencies is that every time we touch the git support, something breaks.
7+
The last few releases are a case in point. `[email protected]` completely broke
8+
installing private modules from GitHub, and `[email protected]` fixed them at the cost
9+
of logging a misleading error message that caused many people to believe that
10+
their dependencies hadn't been successfully installed when they actually had
11+
been.
12+
13+
This all started from a desire to ensure that GitHub shortcut syntax is being
14+
handled correctly. The correct behavior is for npm to try to clone all
15+
dependencies on GitHub (whether they're specified with the GitHub
16+
`organization/repository` shortcut syntax or not) via the plain `git:` protocol
17+
first, and to fall back to using `git+ssh:` if `git:` doesn't work. Previously,
18+
sometimes npm would use `git:` and `git+ssh:` in some cases (most notably when
19+
using GitHub shortcut syntax on the command line), and use `git+https:` in
20+
others (when the GitHub shortcut syntax was present in `package.json`). This
21+
led to subtle and hard-to-understand inconsistencies, and we're glad that as of
22+
`[email protected]`, we've finally gotten things to where they were before we started,
23+
only slightly more consistent overall.
24+
25+
We are now going to go back to our policy of being extremely reluctant to touch
26+
the code that handles Git dependencies.
27+
28+
* [`b747593`](https://github.com/npm/npm/commit/b7475936f473f029e6a027ba1b16277523747d0b)
29+
[#7630](https://github.com/npm/npm/issues/7630) Don't automatically log all
30+
git failures as errors. `maybeGithub` needs to be able to fail without
31+
logging to support its fallback logic.
32+
([@othiym23](https://github.com/othiym23))
33+
* [`cd67a0d`](https://github.com/npm/npm/commit/cd67a0db07891d20871822696c26692c8a84866a)
34+
[#7829](https://github.com/npm/npm/issues/7829) When fetching a git remote
35+
URL, handle failures gracefully (without assuming standard output exists).
36+
([@othiym23](https://github.com/othiym23))
37+
* [`637c7d1`](https://github.com/npm/npm/commit/637c7d1411fe07f409cf91f2e65fd70685cb253c)
38+
[#7829](https://github.com/npm/npm/issues/7829) When fetching a git remote
39+
URL, handle failures gracefully (without assuming standard _error_ exists).
40+
([@othiym23](https://github.com/othiym23))
41+
42+
#### OTHER SIGNIFICANT FIXES
43+
44+
* [`78005eb`](https://github.com/npm/npm/commit/78005ebb6f4103c20f077669c3929b7ea46a4c0d)
45+
[#7743](https://github.com/npm/npm/issues/7743) Always quote arguments passed
46+
to `npm run-script`. This allows build systems and the like to safely escape
47+
glob patterns passed as arguments to `run-scripts` with `npm run-script
48+
<script> -- <arguments>`. This is a tricky change to test, and may be
49+
reverted or moved to `npm@3` if it turns out it breaks things for users.
50+
([@mantoni](https://github.com/mantoni))
51+
* [`da015ee`](https://github.com/npm/npm/commit/da015eee45f6daf384598151d06a9b57ffce136e)
52+
[#7074](https://github.com/npm/npm/issues/7074) `read-package-json@1.3.3`:
53+
`read-package-json` no longer caches `package.json` files, which trades a
54+
very small performance loss for the elimination of a large class of really
55+
annoying race conditions. See [#7074](https://github.com/npm/npm/issues/7074)
56+
for the grisly details. ([@othiym23](https://github.com/othiym23))
57+
* [`dd20f57`](https://github.com/npm/npm/commit/dd20f5755291b9433f0d298ee0eead22cda6db36)
58+
`init-package-json@1.3.2`: Only add the `@` to scoped package names if it's
59+
not already there when reading from the filesystem
60+
([@watilde](https://github.com/watilde)), and support inline validation of
61+
package names ([@michaelnisi](https://github.com/michaelnisi)).
62+
63+
#### SMALL FIXES AND DEPENDENCY UPGRADES
64+
65+
* [`1f380f6`](https://github.com/npm/npm/commit/1f380f66c1e944b8ffbf096fa94d09e931626e12)
66+
[#7820](https://github.com/npm/npm/issues/7820) `are-we-there-yet@1.0.4`: Use
67+
`readable-stream` instead of built-in `stream` module to better support
68+
Node.js 0.8.x. ([@SonicHedgehog](https://github.com/SonicHedgehog))
69+
* [`d380188`](https://github.com/npm/npm/commit/d380188e161be31f5a4f53947de6bc28df4732d8)
70+
`semver@4.3.3`: Don't throw on `semver.parse(null)`, and parse numeric
71+
version strings more robustly. ([@isaacs](https://github.com/isaacs))
72+
* [`01d9964`](https://github.com/npm/npm/commit/01d99649265f921e1c61cf406613e7042bcea008)
73+
`nock@1.4.0`: This change may need to be rolled back, or rolled forward,
74+
because [nock depends on
75+
`setImmediate`](https://github.com/npm/npm/issues/7842), which causes tests
76+
to fail when run with Node.js 0.8. ([@othiym23](https://github.com/othiym23))
77+
* [`91f5cb1`](https://github.com/npm/npm/commit/91f5cb1fb91520fbe25a4da5b80848ed540b9ad3)
78+
[#7791](https://github.com/npm/npm/issues/7791) Fix brackets in npmconf so
79+
that `loaded` is set correctly.
80+
([@charmander](https://github.com/charmander))
81+
* [`1349e27`](https://github.com/npm/npm/commit/1349e27c936a8b0fc9f6440a6d6404ef3b19c587)
82+
[#7818](https://github.com/npm/npm/issues/7818) Update `README.md` to point
83+
out that the install script now lives on https://www.npmjs.com.
84+
([@weisjohn](https://github.com/weisjohn))
85+
186
### v2.7.5 (2015-03-26):
287
88+
#### SECURITY FIXES
89+
90+
* [`300834e`](https://github.com/npm/npm/commit/300834e91a4e2a95fb7fb59c309e7c3fc91d2312)
91+
`tar@2.0.0`: Normalize symbolic links that point to targets outside the
92+
extraction root. This prevents packages containing symbolic links from
93+
overwriting targets outside the expected paths for a package. Thanks to [Tim
94+
Cuthbertson](http://gfxmonk.net/) and the team at [Lift
95+
Security](https://liftsecurity.io/) for working with the npm team to identify
96+
this issue. ([@othiym23](https://github.com/othiym23))
97+
* [`0dc6875`](https://github.com/npm/npm/commit/0dc68757cffd5397c280bc71365d106523a5a052)
98+
`semver@4.3.2`: Package versions can be no more than 256 characters long.
99+
This prevents a situation in which parsing the version number can use
100+
exponentially more time and memory to parse, leading to a potential denial of
101+
service. Thanks to Adam Baldwin at Lift Security for bringing this to our
102+
attention. ([@isaacs](https://github.com/isaacs))
103+
3104
#### BUG FIXES
4105
5106
* [`5811468`](https://github.com/npm/npm/commit/5811468e104ccb6b26b8715dff390d68daa10066)
6107
[#7713](https://github.com/npm/npm/issues/7713) Add a test for `npm link` and
7-
`npm link <package>`. ([@w](https://github.com/w)atilde)
108+
`npm link <package>`. ([@watilde](https://github.com/watilde))
8109
* [`3cf3b0c`](https://github.com/npm/npm/commit/3cf3b0c8fddb6b66f969969feebea85fabd0360b)
9110
[#7713](https://github.com/npm/npm/issues/7713) Only use absolute symbolic
10111
links when `npm link`ing. ([@hokaccha](https://github.com/hokaccha))
@@ -25,12 +126,6 @@
25126
26127
#### DEPENDENCY UPDATES
27128
28-
* [`300834e`](https://github.com/npm/npm/commit/300834e91a4e2a95fb7fb59c309e7c3fc91d2312)
29-
`[email protected]`: Normalize symbolic links that point to targets outside the
30-
extraction root. ([@othiym23](https://github.com/othiym23))
31-
* [`0dc6875`](https://github.com/npm/npm/commit/0dc68757cffd5397c280bc71365d106523a5a052)
32-
`[email protected]`: Package versions can be no more than 256 characters long.
33-
([@isaacs](https://github.com/isaacs))
34129
* [`94df809`](https://github.com/npm/npm/commit/94df8095985bf5ba9d8db99dc445d05dac136aaf)
35130
`request@2.54.0`: Fixes for Node.js 0.12 and io.js.
36131
([@simov](https://github.com/simov))

deps/npm/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ There's a pretty robust install script at
4040

4141
Here's an example using curl:
4242

43-
curl -L https://npmjs.com/install.sh | sh
43+
curl -L https://www.npmjs.com/install.sh | sh
4444

4545
### Slightly Fancier
4646

deps/npm/html/doc/README.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h2 id="fancy-install-unix-">Fancy Install (Unix)</h2>
3232
<p>There&#39;s a pretty robust install script at
3333
<a href="https://www.npmjs.com/install.sh">https://www.npmjs.com/install.sh</a>. You can download that and run it.</p>
3434
<p>Here&#39;s an example using curl:</p>
35-
<pre><code>curl -L https://npmjs.com/install.sh | sh
35+
<pre><code>curl -L https://www.npmjs.com/install.sh | sh
3636
</code></pre><h3 id="slightly-fancier">Slightly Fancier</h3>
3737
<p>You can set any npm configuration params with that script:</p>
3838
<pre><code>npm_config_prefix=/some/path sh install.sh
@@ -126,7 +126,7 @@ <h2 id="legal-stuff">Legal Stuff</h2>
126126
<p>If you have a complaint about a package in the public npm registry,
127127
and cannot <a href="https://docs.npmjs.com/misc/disputes">resolve it with the package
128128
owner</a>, please email
129-
<a href="&#109;&#x61;&#x69;&#108;&#x74;&#x6f;&#58;&#115;&#x75;&#112;&#x70;&#111;&#114;&#x74;&#64;&#110;&#112;&#x6d;&#106;&#x73;&#46;&#99;&#111;&#x6d;">&#115;&#x75;&#112;&#x70;&#111;&#114;&#x74;&#64;&#110;&#112;&#x6d;&#106;&#x73;&#46;&#99;&#111;&#x6d;</a> and explain the situation.</p>
129+
<a href="&#109;&#x61;&#x69;&#x6c;&#116;&#111;&#58;&#115;&#x75;&#112;&#x70;&#111;&#114;&#116;&#64;&#x6e;&#112;&#109;&#x6a;&#x73;&#x2e;&#x63;&#111;&#x6d;">&#115;&#x75;&#112;&#x70;&#111;&#114;&#116;&#64;&#x6e;&#112;&#109;&#x6a;&#x73;&#x2e;&#x63;&#111;&#x6d;</a> and explain the situation.</p>
130130
<p>Any data published to The npm Registry (including user account
131131
information) may be removed or modified at the sole discretion of the
132132
npm server administrators.</p>
@@ -169,5 +169,5 @@ <h2 id="see-also">SEE ALSO</h2>
169169
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
170170
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
171171
</table>
172-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].5</p>
172+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].6</p>
173173

deps/npm/html/doc/api/npm-bin.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
2828
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
2929
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3030
</table>
31-
<p id="footer">npm-bin &mdash; [email protected].5</p>
31+
<p id="footer">npm-bin &mdash; [email protected].6</p>
3232

deps/npm/html/doc/api/npm-bugs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3333
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
3434
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3535
</table>
36-
<p id="footer">npm-bugs &mdash; [email protected].5</p>
36+
<p id="footer">npm-bugs &mdash; [email protected].6</p>
3737

deps/npm/html/doc/api/npm-cache.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
4242
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4343
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4444
</table>
45-
<p id="footer">npm-cache &mdash; [email protected].5</p>
45+
<p id="footer">npm-cache &mdash; [email protected].6</p>
4646

deps/npm/html/doc/api/npm-commands.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ <h2 id="see-also">SEE ALSO</h2>
3636
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
3737
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3838
</table>
39-
<p id="footer">npm-commands &mdash; [email protected].5</p>
39+
<p id="footer">npm-commands &mdash; [email protected].6</p>
4040

deps/npm/html/doc/api/npm-config.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ <h2 id="see-also">SEE ALSO</h2>
5757
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
5858
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
5959
</table>
60-
<p id="footer">npm-config &mdash; [email protected].5</p>
60+
<p id="footer">npm-config &mdash; [email protected].6</p>
6161

deps/npm/html/doc/api/npm-deprecate.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ <h2 id="see-also">SEE ALSO</h2>
4747
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4848
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4949
</table>
50-
<p id="footer">npm-deprecate &mdash; [email protected].5</p>
50+
<p id="footer">npm-deprecate &mdash; [email protected].6</p>
5151

deps/npm/html/doc/api/npm-docs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3333
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
3434
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3535
</table>
36-
<p id="footer">npm-docs &mdash; [email protected].5</p>
36+
<p id="footer">npm-docs &mdash; [email protected].6</p>
3737

deps/npm/html/doc/api/npm-edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3636
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
3737
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3838
</table>
39-
<p id="footer">npm-edit &mdash; [email protected].5</p>
39+
<p id="footer">npm-edit &mdash; [email protected].6</p>
4040

deps/npm/html/doc/api/npm-explore.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3131
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
3232
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3333
</table>
34-
<p id="footer">npm-explore &mdash; [email protected].5</p>
34+
<p id="footer">npm-explore &mdash; [email protected].6</p>
3535

deps/npm/html/doc/api/npm-help-search.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
4444
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4545
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4646
</table>
47-
<p id="footer">npm-help-search &mdash; [email protected].5</p>
47+
<p id="footer">npm-help-search &mdash; [email protected].6</p>
4848

deps/npm/html/doc/api/npm-init.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ <h2 id="see-also">SEE ALSO</h2>
3939
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4040
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4141
</table>
42-
<p id="footer">npm-init &mdash; [email protected].5</p>
42+
<p id="footer">npm-init &mdash; [email protected].6</p>
4343

deps/npm/html/doc/api/npm-install.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
3232
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
3333
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3434
</table>
35-
<p id="footer">npm-install &mdash; [email protected].5</p>
35+
<p id="footer">npm-install &mdash; [email protected].6</p>
3636

deps/npm/html/doc/api/npm-link.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
4242
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4343
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4444
</table>
45-
<p id="footer">npm-link &mdash; [email protected].5</p>
45+
<p id="footer">npm-link &mdash; [email protected].6</p>
4646

0 commit comments

Comments
 (0)