Skip to content

Commit b3ec243

Browse files
zkatFishrock123
authored andcommitted
deps: upgrade npm to 3.10.3
Contains the following npm release: - https://github.com/npm/npm/releases/tag/v3.10.3 PR-URL: #7515 Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent fb4c022 commit b3ec243

File tree

169 files changed

+379
-686
lines changed

Some content is hidden

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

169 files changed

+379
-686
lines changed

β€Ždeps/npm/AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -406,3 +406,5 @@ Elliot Lee <[email protected]>
406406
Dmitry Kirilyuk <[email protected]>
407407
Aaron Tribou <[email protected]>
408408
Tapani Moilanen <[email protected]>
409+
Han Seoul-Oh <[email protected]>
410+
Aleksey Shvayka <[email protected]>

β€Ždeps/npm/CHANGELOG.md

+77-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,78 @@
1+
### v3.10.3 (2016-06-23)
2+
3+
Given that we had not one, but two updates to our RC this past week, it
4+
should come as no surprise that this week's full release is a bit
5+
lighter. We have some documentation patches and a couple of bug fixes via
6+
dependency updates.
7+
8+
If you haven't yet checked out last week's release,
9+
[v3.10.0](https://github.com/npm/npm/releases/tag/v3.10.0)
10+
and the two follow up releases
11+
[v3.10.1](https://github.com/npm/npm/releases/tag/v3.10.1)
12+
and
13+
[v3.10.2](https://github.com/npm/npm/releases/tag/v3.10.2),
14+
you really should do so. They're the most important releases we've had in
15+
quite a while, fixing a bunch of critical bugs (including an issue
16+
impacting publishing with Node.js 6.x) and of course, bringing in the new
17+
and improved progress bar.
18+
19+
#### BUM SYMLINKS BURN NO MORE
20+
21+
There's been a bug lurking where broken symlinks in your `node_modules`
22+
folder could cause all manner of mischief, from crashes to empty `npm ls`
23+
results. The intrepid [@watilde](https://github.com/watilde) tracked this
24+
down for us.
25+
26+
This addresses the root cause of the outdated crasher we protected
27+
against earlier this week in
28+
[#13115](https://github.com/npm/npm/issues/13115).
29+
30+
This also fixes [#9564](https://github.com/npm/npm/issues/9564), the
31+
problem where a bad symlink in your global modules would result in an
32+
empty result when you ran `npm ls -g`.
33+
34+
This ALSO likely fixes numerous "Missing argument #1" errors. (But surely
35+
not all of them as that's actually just a generic arity and
36+
type-validation failure.)
37+
38+
* [`ca92ac4`](https://github.com/npm/npm/commit/ca92ac455b841a708dd89262ff88d503b125d717)
39+
[npm/read-package-tree#6](https://github.com/npm/read-package-tree/pull/6)
40+
41+
Make bad symlinks be non-fatal errors when reading the tree off disk.
42+
([@watilde](https://github.com/watilde))
43+
44+
#### BETTER UNICODE DETECTION
45+
46+
* [`6c3f7f0`](https://github.com/npm/npm/commit/6c3f7f043f09fc2aa19ffd3f956787635fa6f4d0)
47+
48+
Fix unicode detection on a number of Linux distributions.
49+
([@Darkhogg](https://github.com/Darkhogg)) ([@gagern](https://github.com/gagern))
50+
51+
52+
#### DOCUMENTATION FIXES
53+
54+
* [`b9243ee`](https://github.com/npm/npm/commit/b9243ee60a3d60505c2502dc8633811b42c8aaea)
55+
[#13127](https://github.com/npm/npm/pull/13127)
56+
Remove extra backtick from `npm ls` documentation.
57+
([@shvaikalesh](https://github.com/shvaikalesh))
58+
* [`e05c0c2`](https://github.com/npm/npm/commit/e05c0c243cc702f9c392c001f668a90b57eaeb0e)
59+
[iarna/has-unicode#3](https://github.com/iarna/has-unicode/pull/3)
60+
[iarna/has-unicode#4](https://github.com/iarna/has-unicode/pull/4)
61+
[#13084](https://github.com/npm/npm/pull/13084)
62+
Correct changelog entry for shrinkwrap lifecycle order.
63+
([@SimenB](https://github.com/SimenB))
64+
* [`823994f`](https://github.com/npm/npm/commit/823994f100a0e59e1dd109e312811f971968ec75)
65+
[#13080](https://github.com/npm/npm/pull/13080)
66+
Describe using `npm pack` to see a dry run of publication results in
67+
the `npm publish` documentation.
68+
([@laughinghan](https://github.com/laughinghan))
69+
70+
#### DEPENDENCY UPDATES
71+
72+
* [`e44d2db`](https://github.com/npm/npm/commit/e44d2db1ad0d860ca08e99c81135bd399fb733b1)
73+
`[email protected]`: Documentation updates and minor refactoring.
74+
([@iarna](https://github.com/iarna))
75+
176
### v3.10.2 (2016-06-17):
277

378
This is a quick hotfix release with two small bug fixes. First, there was
@@ -198,8 +273,8 @@ status.
198273
scripts section. They are run when you run `npm shrinkwrap` or `npm install --save` with
199274
an `npm-shrinkwrap.json` present in your module directory.
200275

201-
`preshrinkwrap` is run prior to generating the new `npm-shrinkwrap.json` and the other two
202-
are run after.
276+
`preshrinkwrap` and `shrinkwrap` is run prior to generating the new `npm-shrinkwrap.json`
277+
and `postshrinkwrap` is run after.
203278
([@SimenB](https://github.com/SimenB))
204279

205280
#### NEW PROGRESS BAR

β€Ždeps/npm/doc/cli/npm-ls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Display only the dependency tree for packages in `devDependencies`.
8989

9090
When "dev" or "development", is an alias to `dev`.
9191

92-
When "prod" or "production", is an alias to `production`.`
92+
When "prod" or "production", is an alias to `production`.
9393

9494
## SEE ALSO
9595

β€Ždeps/npm/doc/cli/npm-publish.md

+5
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ Once a package is published with a given name and version, that
4848
specific name and version combination can never be used again, even if
4949
it is removed with npm-unpublish(1).
5050

51+
For a "dry run" that does everything except actually publishing to the
52+
registry, see `npm-pack(1)`, which figures out the files to be included and
53+
packs them into a tarball to be uploaded to the registry.
54+
5155
## SEE ALSO
5256

5357
* npm-registry(7)
@@ -56,3 +60,4 @@ it is removed with npm-unpublish(1).
5660
* npm-owner(1)
5761
* npm-deprecate(1)
5862
* npm-tag(1)
63+
* npm-pack(1)

β€Ždeps/npm/html/doc/README.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,5 @@ <h2 id="see-also">SEE ALSO</h2>
126126
<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>
127127
<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>
128128
</table>
129-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].2</p>
129+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].3</p>
130130

β€Ždeps/npm/html/doc/cli/npm-access.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,5 @@ <h2 id="see-also">SEE ALSO</h2>
8484
<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>
8585
<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>
8686
</table>
87-
<p id="footer">npm-access &mdash; [email protected].2</p>
87+
<p id="footer">npm-access &mdash; [email protected].3</p>
8888

β€Ždeps/npm/html/doc/cli/npm-adduser.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ <h2 id="see-also">SEE ALSO</h2>
7272
<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>
7373
<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>
7474
</table>
75-
<p id="footer">npm-adduser &mdash; [email protected].2</p>
75+
<p id="footer">npm-adduser &mdash; [email protected].3</p>
7676

β€Ždeps/npm/html/doc/cli/npm-bin.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ <h2 id="see-also">SEE ALSO</h2>
3535
<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>
3636
<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>
3737
</table>
38-
<p id="footer">npm-bin &mdash; [email protected].2</p>
38+
<p id="footer">npm-bin &mdash; [email protected].3</p>
3939

β€Ždeps/npm/html/doc/cli/npm-bugs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ <h2 id="see-also">SEE ALSO</h2>
5555
<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>
5656
<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>
5757
</table>
58-
<p id="footer">npm-bugs &mdash; [email protected].2</p>
58+
<p id="footer">npm-bugs &mdash; [email protected].3</p>
5959

β€Ždeps/npm/html/doc/cli/npm-build.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ <h2 id="description">DESCRIPTION</h2>
4040
<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>
4141
<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>
4242
</table>
43-
<p id="footer">npm-build &mdash; [email protected].2</p>
43+
<p id="footer">npm-build &mdash; [email protected].3</p>
4444

β€Ždeps/npm/html/doc/cli/npm-bundle.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ <h2 id="see-also">SEE ALSO</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-bundle &mdash; [email protected].2</p>
34+
<p id="footer">npm-bundle &mdash; [email protected].3</p>
3535

β€Ždeps/npm/html/doc/cli/npm-cache.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ <h2 id="see-also">SEE ALSO</h2>
8181
<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>
8282
<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>
8383
</table>
84-
<p id="footer">npm-cache &mdash; [email protected].2</p>
84+
<p id="footer">npm-cache &mdash; [email protected].3</p>
8585

β€Ždeps/npm/html/doc/cli/npm-completion.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ <h2 id="see-also">SEE ALSO</h2>
4343
<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>
4444
<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>
4545
</table>
46-
<p id="footer">npm-completion &mdash; [email protected].2</p>
46+
<p id="footer">npm-completion &mdash; [email protected].3</p>
4747

β€Ždeps/npm/html/doc/cli/npm-config.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ <h2 id="see-also">SEE ALSO</h2>
6767
<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>
6868
<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>
6969
</table>
70-
<p id="footer">npm-config &mdash; [email protected].2</p>
70+
<p id="footer">npm-config &mdash; [email protected].3</p>
7171

β€Ždeps/npm/html/doc/cli/npm-dedupe.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ <h2 id="see-also">SEE ALSO</h2>
6161
<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>
6262
<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>
6363
</table>
64-
<p id="footer">npm-dedupe &mdash; [email protected].2</p>
64+
<p id="footer">npm-dedupe &mdash; [email protected].3</p>
6565

β€Ždeps/npm/html/doc/cli/npm-deprecate.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ <h2 id="see-also">SEE ALSO</h2>
3838
<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>
3939
<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>
4040
</table>
41-
<p id="footer">npm-deprecate &mdash; [email protected].2</p>
41+
<p id="footer">npm-deprecate &mdash; [email protected].3</p>
4242

β€Ždeps/npm/html/doc/cli/npm-dist-tag.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,5 +87,5 @@ <h2 id="see-also">SEE ALSO</h2>
8787
<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>
8888
<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>
8989
</table>
90-
<p id="footer">npm-dist-tag &mdash; [email protected].2</p>
90+
<p id="footer">npm-dist-tag &mdash; [email protected].3</p>
9191

β€Ždeps/npm/html/doc/cli/npm-docs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@ <h2 id="see-also">SEE ALSO</h2>
5656
<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>
5757
<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>
5858
</table>
59-
<p id="footer">npm-docs &mdash; [email protected].2</p>
59+
<p id="footer">npm-docs &mdash; [email protected].3</p>
6060

β€Ždeps/npm/html/doc/cli/npm-edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ <h2 id="see-also">SEE ALSO</h2>
4949
<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>
5050
<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>
5151
</table>
52-
<p id="footer">npm-edit &mdash; [email protected].2</p>
52+
<p id="footer">npm-edit &mdash; [email protected].3</p>
5353

β€Ždeps/npm/html/doc/cli/npm-explore.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ <h2 id="see-also">SEE ALSO</h2>
4949
<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>
5050
<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>
5151
</table>
52-
<p id="footer">npm-explore &mdash; [email protected].2</p>
52+
<p id="footer">npm-explore &mdash; [email protected].3</p>
5353

β€Ždeps/npm/html/doc/cli/npm-help-search.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ <h2 id="see-also">SEE ALSO</h2>
4545
<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>
4646
<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>
4747
</table>
48-
<p id="footer">npm-help-search &mdash; [email protected].2</p>
48+
<p id="footer">npm-help-search &mdash; [email protected].3</p>
4949

β€Ždeps/npm/html/doc/cli/npm-help.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ <h2 id="see-also">SEE ALSO</h2>
5050
<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>
5151
<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>
5252
</table>
53-
<p id="footer">npm-help &mdash; [email protected].2</p>
53+
<p id="footer">npm-help &mdash; [email protected].3</p>
5454

β€Ždeps/npm/html/doc/cli/npm-init.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ <h2 id="see-also">SEE ALSO</h2>
4848
<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>
4949
<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>
5050
</table>
51-
<p id="footer">npm-init &mdash; [email protected].2</p>
51+
<p id="footer">npm-init &mdash; [email protected].3</p>
5252

β€Ždeps/npm/html/doc/cli/npm-install-test.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ <h2 id="see-also">SEE ALSO</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-install-test &mdash; [email protected].2</p>
45+
<p id="footer">npm-install-test &mdash; [email protected].3</p>

β€Ždeps/npm/html/doc/cli/npm-install.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,5 +312,5 @@ <h2 id="see-also">SEE ALSO</h2>
312312
<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>
313313
<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>
314314
</table>
315-
<p id="footer">npm-install &mdash; [email protected].2</p>
315+
<p id="footer">npm-install &mdash; [email protected].3</p>
316316

β€Ždeps/npm/html/doc/cli/npm-link.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ <h2 id="synopsis">SYNOPSIS</h2>
7373
<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>
7474
<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>
7575
</table>
76-
<p id="footer">npm-link &mdash; [email protected].2</p>
76+
<p id="footer">npm-link &mdash; [email protected].3</p>
7777

β€Ždeps/npm/html/doc/cli/npm-logout.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ <h3 id="scope">scope</h3>
5151
<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>
5252
<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>
5353
</table>
54-
<p id="footer">npm-logout &mdash; [email protected].2</p>
54+
<p id="footer">npm-logout &mdash; [email protected].3</p>
5555

β€Ždeps/npm/html/doc/cli/npm-ls.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h2 id="synopsis">SYNOPSIS</h2>
2121
limit the results to only the paths to the packages named. Note that
2222
nested packages will <em>also</em> show the paths to the specified packages.
2323
For example, running <code>npm ls promzard</code> in npm&#39;s source tree will show:</p>
24-
<pre><code>[email protected].2 /path/to/npm
24+
<pre><code>[email protected].3 /path/to/npm
2525
└─┬ [email protected]
2626
└── [email protected]
2727
</code></pre><p>It will print out extraneous, missing, and invalid packages.</p>
@@ -79,7 +79,7 @@ <h3 id="only">only</h3>
7979
<li>Type: String</li>
8080
</ul>
8181
<p>When &quot;dev&quot; or &quot;development&quot;, is an alias to <code>dev</code>.</p>
82-
<p>When &quot;prod&quot; or &quot;production&quot;, is an alias to <code>production</code>.`</p>
82+
<p>When &quot;prod&quot; or &quot;production&quot;, is an alias to <code>production</code>.</p>
8383
<h2 id="see-also">SEE ALSO</h2>
8484
<ul>
8585
<li><a href="../cli/npm-config.html">npm-config(1)</a></li>
@@ -104,5 +104,5 @@ <h2 id="see-also">SEE ALSO</h2>
104104
<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>
105105
<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>
106106
</table>
107-
<p id="footer">npm-ls &mdash; [email protected].2</p>
107+
<p id="footer">npm-ls &mdash; [email protected].3</p>
108108

0 commit comments

Comments
Β (0)