Skip to content

Commit afb7c1b

Browse files
zkatFishrock123
authored andcommitted
deps: upgrade npm to 4.1.2
PR-URL: #11020 Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent 5de3cf0 commit afb7c1b

File tree

1,035 files changed

+919
-21259
lines changed

Some content is hidden

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

1,035 files changed

+919
-21259
lines changed

β€Ždeps/npm/.travis.yml

-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ matrix:
2020
# then master
2121
- node_js: "7"
2222
env: DEPLOY_VERSION=testing
23-
# then 0.12, which is still in maintenance mode until the end of 2016 I guess?
24-
# https://github.com/nodejs/LTS#lts-schedule
25-
- node_js: "0.12"
26-
env: DEPLOY_VERSION=testing
2723
before_install:
2824
# required by test/tap/registry.js
2925
- "mkdir -p /var/run/couchdb"

β€Ždeps/npm/CHANGELOG.md

+84-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,86 @@
1+
### v4.1.2 (2017-01-12)
2+
3+
We have a twee little release this week as we come back from the holidays.
4+
5+
#### 0.12 IS UNSUPPORTED NOW (really)
6+
7+
After [jumping the gun a
8+
little](https://github.com/npm/npm/releases/tag/v4.0.2), we can now
9+
officially remove 0.12 from our supported versions list. The Node.js
10+
project has now officially ended even maintenance support for 0.12 and thus,
11+
so will we. To reiterate from the last time we did this:
12+
13+
What this means:
14+
15+
* Your contributions will no longer block on the tests passing on 0.12.
16+
* We will no longer block dependency upgrades on working with 0.12.
17+
* Bugs filed on the npm CLI that are due to incompatibilities with 0.12
18+
(and older versions) will be closed with a strong urging to upgrade to a
19+
supported version of Node.
20+
* On the flip side, we'll continue to (happily!) accept patches that
21+
address regressions seen when running the CLI with Node.js 0.12.
22+
23+
What this doesn't mean:
24+
25+
* The CLI is going to start depending on ES2015+ features. npm continues
26+
to work, in almost all cases, all the way back to Node.js 0.8, and our
27+
long history of backwards compatibility is a source of pride for the
28+
team.
29+
* We aren't concerned about the problems of users who, for whatever
30+
reason, can't update to newer versions of npm. As mentioned above, we're
31+
happy to take community patches intended to address regressions.
32+
33+
We're not super interested in taking sides on what version of Node.js
34+
you "should" be running. We're a workflow tool, and we understand that
35+
you all have a diverse set of operational environments you need to be
36+
able to support. At the same time, we _are_ a small team, and we need
37+
to put some limits on what we support. Tracking what's supported by our
38+
runtime's own team seems most practical, so that's what we're doing.
39+
40+
* [`c7bbba8`](https://github.com/npm/npm/commit/c7bbba8744b62448103a1510c65d9751288abb5d)
41+
Remove 0.12 from our supported versions list.
42+
([@iarna](https://github.com/iarna))
43+
44+
#### WRITING TO SYMLINKED `package.json` (AND OTHER FILES)
45+
46+
If your `package.json`, `npm-shrinkwrap.json` or `.npmrc` were a symlink and
47+
you used an `npm` command that modified one of these (eg `npm config set` or
48+
`npm install --save`) then previously we would have removed your symlink and
49+
replaced it with an ordinary file. While making these files symlinks is pretty
50+
uncommon, this was still surprising behavior. With this fix we now overwrite
51+
the _destination_ of the symlink and preserve the symlink itself.
52+
53+
* [`a583983`](https://github.com/npm/npm/commit/a5839833d3de7072be06884b91902c093aff1aed)
54+
[write-file-atomic/#5](https://github.com/npm/write-file-atomic/issues/5)
55+
[#10223](https://github.com/npm/npm/10223)
56+
57+
When the target is a symlink, write-file-atomic now overwrites the
58+
_destination_ of the symlink, instead of replacing the symlink itself. This
59+
makes it's behavior match `fs.writeFile`.
60+
61+
Fixed a bug where it would ALWAYS fs.stat to look up default mode and chown
62+
values even if you'd passed them in. (It still used the values you passed
63+
in, but did a needless stat.)
64+
([@iarna](https://github.com/iarna))
65+
66+
#### DEPENDENCY UPDATES
67+
68+
* [`521f230`](https://github.com/npm/npm/commit/521f230dd57261e64ac9613b3db62f5312971dca)
69+
70+
Improvements to how Python is located. New `--devdir` flag.
71+
([@bnoordhuis](https://github.com/bnoordhuis))
72+
([@mhart](https://github.com/mhart))
73+
* [`ccd83e8`](https://github.com/npm/npm/commit/ccd83e8a70d35fb0904f8a9adb2ff7ac8a6b2706)
74+
75+
Add new emitPath option.
76+
([@nathanwills](https://github.com/nathanwills))
77+
78+
#### TEST IMPROVEMENTS
79+
80+
* [`d76e084`](https://github.com/npm/npm/commit/d76e08463fd65705217624b861a1443811692f34)
81+
Disable metric reporting for test suite even if the user has it enabled.
82+
([@iarna](https://github.com/iarna))
83+
184
### v4.1.1 (2016-12-16)
285

386
This fixes a bug in the metrics reporting where, if you had enabled it then
@@ -10,7 +93,7 @@ Anyway, this is a quick release to fix that bug:
1093

1194
* [`51c393f`](https://github.com/npm/npm/commit/51c393feff5f4908c8a9fb02baef505b1f2259be)
1295
[#15237](https://github.com/npm/npm/pull/15237)
13-
Don't launch a metrics sender process if we're runnning from a metrics
96+
Don't launch a metrics sender process if we're running from a metrics
1497
sender process.
1598
([@iarna](https://github.com/iarna))
1699

β€Ž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].1</p>
129+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].2</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].1</p>
87+
<p id="footer">npm-access &mdash; [email protected].2</p>
8888

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

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

β€Ž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].1</p>
38+
<p id="footer">npm-bin &mdash; [email protected].2</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].1</p>
58+
<p id="footer">npm-bugs &mdash; [email protected].2</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].1</p>
43+
<p id="footer">npm-build &mdash; [email protected].2</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].1</p>
34+
<p id="footer">npm-bundle &mdash; [email protected].2</p>
3535

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

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

β€Ž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].1</p>
46+
<p id="footer">npm-completion &mdash; [email protected].2</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].1</p>
70+
<p id="footer">npm-config &mdash; [email protected].2</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].1</p>
64+
<p id="footer">npm-dedupe &mdash; [email protected].2</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].1</p>
41+
<p id="footer">npm-deprecate &mdash; [email protected].2</p>
4242

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

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

β€Ž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].1</p>
59+
<p id="footer">npm-docs &mdash; [email protected].2</p>
6060

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,4 @@ <h2 id="see-also">SEE ALSO</h2>
103103
<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>
104104
<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>
105105
</table>
106-
<p id="footer">npm-doctor &mdash; [email protected].1</p>
106+
<p id="footer">npm-doctor &mdash; [email protected].2</p>

β€Ž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].1</p>
52+
<p id="footer">npm-edit &mdash; [email protected].2</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].1</p>
52+
<p id="footer">npm-explore &mdash; [email protected].2</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].1</p>
48+
<p id="footer">npm-help-search &mdash; [email protected].2</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].1</p>
53+
<p id="footer">npm-help &mdash; [email protected].2</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].1</p>
51+
<p id="footer">npm-init &mdash; [email protected].2</p>
5252

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,5 +316,5 @@ <h2 id="see-also">SEE ALSO</h2>
316316
<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>
317317
<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>
318318
</table>
319-
<p id="footer">npm-install &mdash; [email protected].1</p>
319+
<p id="footer">npm-install &mdash; [email protected].2</p>
320320

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

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

β€Ž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].1</p>
54+
<p id="footer">npm-logout &mdash; [email protected].2</p>
5555

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

+2-2
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].1 /path/to/npm
24+
<pre><code>[email protected].2 /path/to/npm
2525
└─┬ [email protected]
2626
└── [email protected]
2727
</code></pre><p>It will print out extraneous, missing, and invalid packages.</p>
@@ -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].1</p>
107+
<p id="footer">npm-ls &mdash; [email protected].2</p>
108108

0 commit comments

Comments
Β (0)