Skip to content

Commit 7d0baf1

Browse files
othiym23Fishrock123
authored andcommitted
deps: upgrade npm to 2.7.1
PR-URL: #1142 Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: Rod Vagg <[email protected]>
1 parent 4eb8810 commit 7d0baf1

File tree

209 files changed

+6297
-681
lines changed

Some content is hidden

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

209 files changed

+6297
-681
lines changed

deps/npm/AUTHORS

+7
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,13 @@ Joost-Wim Boekesteijn <[email protected]>
187187
Dalmais Maxence <[email protected]>
188188
Marcus Ekwall <[email protected]>
189189
Jordan Harband <[email protected]>
190+
Guðlaugur Stefán Egilsson <[email protected]>
191+
Helge Skogly Holm <[email protected]>
192+
Peter A. Shevtsov <[email protected]>
193+
Alain Kalker <[email protected]>
194+
Bryant Williams <[email protected]>
195+
196+
Tim Whidden <[email protected]>
190197
Steve Mason <[email protected]>
191198
Wil Moore III <[email protected]>
192199
Sergey Belov <[email protected]>

deps/npm/CHANGELOG.md

+92-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,92 @@
1+
### v2.7.1 (2015-03-05):
2+
3+
#### GITSANITY
4+
5+
* [`6823807`](https://github.com/npm/npm/commit/6823807bba6c00228a724e1205ae90d67df0adad)
6+
[#7121](https://github.com/npm/npm/issues/7121) `npm install --save` for Git
7+
dependencies saves the URL passed in, instead of the temporary directory used
8+
to clone the remote repo. Fixes using Git dependencies when shrinkwwapping.
9+
In the process, rewrote the Git dependency caching code. Again. No more
10+
single-letter variable names, and a much clearer workflow.
11+
([@othiym23](https://github.com/othiym23))
12+
* [`c8258f3`](https://github.com/npm/npm/commit/c8258f31365b045e5fcf15b865a363abbc3be616)
13+
[#7486](https://github.com/npm/npm/issues/7486) When installing Git remotes,
14+
the caching code was passing in the function `gitEnv` instead of the results
15+
of invoking it. ([@functino](https://github.com/functino))
16+
* [`c618eed`](https://github.com/npm/npm/commit/c618eeda3e321fd454d77c476b53a0330f2344cc)
17+
[#2556](https://github.com/npm/npm/issues/2556) Make it possible to install
18+
Git dependencies when using `--link` by not linking just the Git
19+
dependencies. ([@smikes](https://github.com/smikes))
20+
21+
#### WHY DID THIS TAKE SO LONG.
22+
23+
* [`abdd040`](https://github.com/npm/npm/commit/abdd040da90932535472f593d5433a67ee074801)
24+
`[email protected]`: Provide more helpful error messages when JSON
25+
parse errors are encountered by using a more forgiving JSON parser than
26+
JSON.parse. ([@smikes](https://github.com/smikes))
27+
28+
#### BUGS & TWEAKS
29+
30+
* [`c56cfcd`](https://github.com/npm/npm/commit/c56cfcd79cd8ab4ccd06d2c03d7e04030d576683)
31+
[#7525](https://github.com/npm/npm/issues/7525) `npm dedupe` handles scoped
32+
packages. ([@KidkArolis](https://github.com/KidkArolis))
33+
* [`1b8ba74`](https://github.com/npm/npm/commit/1b8ba7426393cbae2c76ad2c35953782d4401871)
34+
[#7531](https://github.com/npm/npm/issues/7531) `npm stars` and `npm whoami`
35+
will no longer send the registry the error text saying you need to log in as
36+
your username. ([@othiym23](https://github.com/othiym23))
37+
* [`6de1e91`](https://github.com/npm/npm/commit/6de1e91116a5105dfa75126532b9083d8672e034)
38+
[#6441](https://github.com/npm/npm/issues/6441) Prevent needless reinstalls
39+
by only updating packages when the current version isn't the same as the
40+
version returned as `wanted` by `npm outdated`.
41+
([@othiym23](https://github.com/othiym23))
42+
* [`2abc3ee`](https://github.com/npm/npm/commit/2abc3ee08f0cabc4e7bfd7b973c0b59dc44715ff)
43+
Add `npm upgrade` as an alias for `npm update`.
44+
([@othiym23](https://github.com/othiym23))
45+
* [`bcd4722`](https://github.com/npm/npm/commit/bcd47224e18884191a5d0057c2b2fff83ac8206e)
46+
[#7508](https://github.com/npm/npm/issues/7508) FreeBSD uses `EAI_FAIL`
47+
instead of `ENOTFOUND`. ([@othiym23](https://github.com/othiym23))
48+
* [`21c1ac4`](https://github.com/npm/npm/commit/21c1ac41280f0716a208cde14025a2ad5ef61fed)
49+
[#7507](https://github.com/npm/npm/issues/7507) Update support URL in generic
50+
error handler to `https:` from `http:`.
51+
([@watilde](https://github.com/watilde))
52+
* [`b6bd99a`](https://github.com/npm/npm/commit/b6bd99a73f575545fbbaef95c12237c47dd32561)
53+
[#7492](https://github.com/npm/npm/issues/7492) On install, the
54+
`package.json` `engineStrict` deprecation only warns for the current package.
55+
([@othiym23](https://github.com/othiym23))
56+
* [`4ef1412`](https://github.com/npm/npm/commit/4ef1412d0061239da2b1c4460ed6db37cc9ded27)
57+
[#7075](https://github.com/npm/npm/issues/7075) If you try to tag a release
58+
as a valid semver range, `npm publish` and `npm tag` will error early instead
59+
of proceeding. ([@smikes](https://github.com/smikes))
60+
* [`ad53d0f`](https://github.com/npm/npm/commit/ad53d0f666125d9f50d661b54901c6e5bab4d603)
61+
Use `rimraf` in npm build script because Windows doesn't know what rm is.
62+
([@othiym23](https://github.com/othiym23))
63+
* [`8885c4d`](https://github.com/npm/npm/commit/8885c4dfb618f2838930b5c5149abea300a762d6)
64+
`[email protected]`: Better Windows support.
65+
([@isaacs](https://github.com/isaacs))
66+
* [`8885c4d`](https://github.com/npm/npm/commit/8885c4dfb618f2838930b5c5149abea300a762d6)
67+
`[email protected]`: Handle bad symlinks properly.
68+
([@isaacs](https://github.com/isaacs))
69+
70+
###E TYPSO & CLARFIICATIONS
71+
72+
dId yuo know that submiting fxies for doc tpyos is an exclelent way to get
73+
strated contriburting to a new open-saurce porject?
74+
75+
* [`42c605c`](https://github.com/npm/npm/commit/42c605c7b401f603c32ea70427e1a7666adeafd9)
76+
Fix typo in `CHANGELOG.md` ([@adrianblynch](https://github.com/adrianblynch))
77+
* [`c9bd58d`](https://github.com/npm/npm/commit/c9bd58dd637b9c41441023584a13e3818d5db336)
78+
Add note about `node_modules/.bin` being added to the path in `npm
79+
run-script`. ([@quarterto](https://github.com/quarterto))
80+
* [`903bdd1`](https://github.com/npm/npm/commit/903bdd105b205d6e45d3a2ab83eea8e4071e9aeb)
81+
Matt Ranney confused the world when he renamed `node-redis` to `redis`. "The
82+
world" includes npm's documentation.
83+
([@RichardLitt](https://github.com/RichardLitt))
84+
* [`dea9bb2`](https://github.com/npm/npm/commit/dea9bb2319183fe54bf4d173d8533d46d2c6611c)
85+
Fix typo in contributor link. ([@watilde](https://github.com/watilde))
86+
* [`1226ca9`](https://github.com/npm/npm/commit/1226ca98d4d7650cc3ba16bf7ac62e44820f3bfa)
87+
Properly close code block in npm-install.md.
88+
([@olizilla](https://github.com/olizilla))
89+
190
### v2.7.0 (2015-02-26):
291

392
#### SOMETIMES SEMVER MEANS "SUBJECTIVE-EMPATHETIC VERSIONING"
@@ -14,7 +103,7 @@ If the patch below were landed on its own, free of context, it would be a
14103
breaking change. But, since the "new" behavior is how the documentation claims
15104
this feature has always worked, I'm classifying it as a patch-level bug fix. I
16105
apologize in advance if this breaks anybody's deployment scripts, and if it
17-
turns out to be a significant regression in practics, we can revert this change
106+
turns out to be a significant regression in practice, we can revert this change
18107
and move it to `npm@3`, which is allowed to make breaking changes due to being
19108
a new major version of semver.
20109

@@ -65,7 +154,7 @@ tracker, and they included some nice small features and fixes:
65154
[#7354](https://github.com/npm/npm/issues/7354) Add `--if-present` flag to
66155
allow e.g. CI systems to call (semi-) standard build tasks defined in
67156
`package.json`, but don't raise an error if no such script is defined.
68-
([@jussi](https://github.com/jussi)-kalliokoski)
157+
([@jussi-kalliokoski](https://github.com/jussi-kalliokoski))
69158
* [`7bf85cc`](https://github.com/npm/npm/commit/7bf85cc372ab5698593b01e139c383fa62c92516)
70159
[#4005](https://github.com/npm/npm/issues/4005)
71160
[#6248](https://github.com/npm/npm/issues/6248) Globally unlink a package
@@ -1077,7 +1166,7 @@ Other changes:
10771166
* [`b706d63`](https://github.com/npm/npm/commit/b706d637d5965dbf8f7ce07dc5c4bc80887f30d8)
10781167
[#3059](https://github.com/npm/npm/issues/3059) disable prepublish when
10791168
running `npm install --production`
1080-
([@jussi](https://github.com/jussi)-kalliokoski)
1169+
([@jussi-kalliokoski](https://github.com/jussi-kalliokoski))
10811170
* [`119f068`](https://github.com/npm/npm/commit/119f068eae2a36fa8b9c9ca557c70377792243a4)
10821171
attach the node version used when publishing a package to its registry
10831172
metadata ([@othiym23](https://github.com/othiym23))

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ after packing it up into a tarball (b).
157157

158158
* `npm install <githubname>/<githubrepo>`:
159159

160-
Install the package at `https://github.com/githubname/githubrepo" by
160+
Install the package at `https://github.com/githubname/githubrepo` by
161161
attempting to clone it using `git`.
162162

163163
Example:

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

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

4040
Now, any changes to ~/projects/node-redis will be reflected in
41-
~/projects/node-bloggy/node_modules/node-redis/
41+
~/projects/node-bloggy/node_modules/node-redis/. Note that the link should
42+
be to the package name, not the directory name for that package.
4243

4344
You may also shortcut the two steps in one. For example, to do the
4445
above use-case in a shorter way:

deps/npm/doc/cli/npm-run-script.md

+7
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@ environment variables that will be available to the script at runtime. If an
2929
"env" command is defined in your package it will take precedence over the
3030
built-in.
3131

32+
In addition to the shell's pre-existing `PATH`, `npm run` adds
33+
`node_modules/.bin` to the `PATH` provided to scripts. Any binaries provided by
34+
locally-installed dependencies can be used without the `node_modules/.bin`
35+
prefix. For example, if there is a `devDependency` on `tap` in your package,
36+
you should write `"scripts": {"test": "tap test/\*.js"}` instead of `"scripts":
37+
{"test": "node_modules/.bin/tap test/\*.js"}` to run your tests.
38+
3239
## SEE ALSO
3340

3441
* npm-scripts(7)

deps/npm/html/doc/README.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ <h2 id="legal-stuff">Legal Stuff</h2>
126126
<p>If you have a complaint about a package in the public npm registry,
127127
and cannot <a href="https://docs.npmjs.com/misc/disputes">resolve it with the package
128128
owner</a>, please email
129-
<a href="&#109;&#97;&#105;&#108;&#x74;&#x6f;&#58;&#x73;&#117;&#112;&#112;&#111;&#114;&#116;&#x40;&#x6e;&#112;&#x6d;&#x6a;&#x73;&#x2e;&#x63;&#111;&#109;">&#x73;&#117;&#112;&#112;&#111;&#114;&#116;&#x40;&#x6e;&#112;&#x6d;&#x6a;&#x73;&#x2e;&#x63;&#111;&#109;</a> and explain the situation.</p>
129+
<a href="&#109;&#x61;&#105;&#x6c;&#116;&#111;&#58;&#x73;&#117;&#112;&#112;&#x6f;&#114;&#x74;&#64;&#110;&#x70;&#109;&#106;&#x73;&#x2e;&#x63;&#x6f;&#109;">&#x73;&#117;&#112;&#112;&#x6f;&#114;&#x74;&#64;&#110;&#x70;&#109;&#106;&#x73;&#x2e;&#x63;&#x6f;&#109;</a> and explain the situation.</p>
130130
<p>Any data published to The npm Registry (including user account
131131
information) may be removed or modified at the sole discretion of the
132132
npm server administrators.</p>
@@ -169,5 +169,5 @@ <h2 id="see-also">SEE ALSO</h2>
169169
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
170170
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
171171
</table>
172-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].0</p>
172+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].1</p>
173173

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ <h3 id="global">global</h3>
6363
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
6464
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
6565
</table>
66-
<p id="footer">npm-ls &mdash; [email protected].0</p>
66+
<p id="footer">npm-ls &mdash; [email protected].1</p>
6767

deps/npm/html/doc/api/npm-outdated.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-outdated &mdash; [email protected].0</p>
31+
<p id="footer">npm-outdated &mdash; [email protected].1</p>
3232

0 commit comments

Comments
 (0)