The Wayback Machine - https://web.archive.org/web/20250407172855/https://github.com/nodejs/node/commit/284d3cc3b7
Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Commit 284d3cc

Browse filesBrowse files
iarnaMylesBorins
authored andcommitted
deps: upgrade npm to 3.10.10
PR-URL: #9847 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
1 parent cf131bf commit 284d3cc
Copy full SHA for 284d3cc

File tree

151 files changed

+264
-195
lines changed

Some content is hidden

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

151 files changed

+264
-195
lines changed

‎deps/npm/.npmignore

Copy file name to clipboardexpand all lines: deps/npm/.npmignore
+2
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,5 @@ html/*.png
3030
/test/tap/builtin-config
3131

3232
.nyc_output
33+
34+
npm-shrinkwrap.json

‎deps/npm/.travis.yml

Copy file name to clipboardexpand all lines: deps/npm/.travis.yml
+29-12
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,42 @@ language: node_js
77
matrix:
88
include:
99
# LTS is our most important target
10-
- node_js: "4"
10+
- node_js: "6"
1111
# DEPLOY_VERSION is used to set the couchapp setup mode for test/tap/registry.js
1212
# only gather coverage info for LTS
1313
env: DEPLOY_VERSION=testing COVERALLS_REPO_TOKEN="$COVERALLS_OPTIONAL_TOKEN"
14-
# next LTS and master is next most important
15-
- node_js: "6"
16-
env: DEPLOY_VERSION=testing
17-
# still in LTS maintenance until fall 2016 (also still in wide use)
18-
- node_js: "0.10"
19-
env: DEPLOY_VERSION=testing
20-
# will be unsupported as soon as 6 becomes LTS and 7 released
21-
- node_js: "5"
14+
script:
15+
- "node . run tap-cover -- \"test/tap/*.js\""
16+
- "unset COVERALLS_REPO_TOKEN ; node . run tap -- \"test/slow/*.js\" \"test/broken-under-*/*.js\""
17+
# previous LTS is next most important
18+
- node_js: "4"
2219
env: DEPLOY_VERSION=testing
23-
# technically in LTS / distros, unbeloved
24-
- node_js: "0.12"
20+
# then master
21+
- node_js: "7"
2522
env: DEPLOY_VERSION=testing
2623
before_install:
27-
- "node . install -g ."
2824
# required by test/tap/registry.js
2925
- "mkdir -p /var/run/couchdb"
3026
notifications:
3127
slack: npm-inc:kRqQjto7YbINqHPb1X6nS3g8
28+
cache:
29+
directories:
30+
- $HOME/.npm
31+
- node_modules/.bin
32+
- node_modules/deep-equal
33+
- node_modules/marked
34+
- node_modules/marked-man
35+
- node_modules/npm-registry-couchapp
36+
- node_modules/npm-registry-mock
37+
- node_modules/require-inject
38+
- node_modules/sprintf-js
39+
- node_modules/standard
40+
- node_modules/tacks
41+
- node_modules/tap
42+
install:
43+
- "node . prune"
44+
- "node . rebuild --depth=0"
45+
- "node . install --ignore-scripts"
46+
- "make -j4 doc"
47+
script:
48+
- "node . run tap -- \"test/tap/*.js\" \"test/slow/*.js\" \"test/broken-under-nyc/*.js\""

‎deps/npm/CHANGELOG.md

Copy file name to clipboardexpand all lines: deps/npm/CHANGELOG.md
+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
### v3.10.10 (2016-11-04)
2+
3+
See the discussion on [#14042](https://github.com/npm/npm/issues/14042) for
4+
more context on this release, which is intended to address a serious regression
5+
in shrinkwrap behavior in the version of the CLI currently bundled with Node.js
6+
6 LTS "Boron". You should never install this version directly; instead update
7+
to `npm@4`, which has everything in this release and more.
8+
9+
#### REGRESSION FIX
10+
11+
* [`9aebe98`](https://github.com/npm/npm/commit/9aebe982114ea2107f46baa1dcb11713b4aaad04)
12+
[#14117](https://github.com/npm/npm/pull/14117)
13+
Fixes a bug where installing a shrinkwrapped package would fail if the
14+
platform failed to install an optional dependency included in the shrinkwrap.
15+
([@watilde](https://github.com/watilde))
16+
17+
#### UPDATE SUPPORT MATRIX
18+
19+
With the advent of the second official Node.js LTS release, Node 6.x
20+
'Boron', the Node.js project has now officially dropped versions 0.10
21+
and 0.12 out of the maintenance phase of LTS. (Also, Node 5 was never
22+
part of LTS, and will see no further support now that Node 7 has been
23+
released.) As a small team with limited resources, the npm CLI team is
24+
following suit and dropping those versions of Node from its CI test
25+
matrix.
26+
27+
* [`c82ecfd`](https://github.com/npm/npm/commit/c82ecfdbe0b5f318a175714a8753efe4dfd3e4b3)
28+
[#14503](https://github.com/npm/npm/pull/14503)
29+
Node 6 is LTS; 5.x, 0.10, and 0.12 are unsupported.
30+
([@othiym23](https://github.com/othiym23))
31+
132
### v3.10.9 (2016-10-06)
233

334
Hi everyone! This is the last of our monthly releases. We're going to give

‎deps/npm/appveyor.yml

Copy file name to clipboardexpand all lines: deps/npm/appveyor.yml
+4-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
environment:
22
matrix:
33
# LTS is our most important target
4-
- nodejs_version: "4"
5-
# next LTS and master is next most important
64
- nodejs_version: "6"
7-
# still in LTS maintenance until fall 2016
8-
# (also still in wide use)
9-
- nodejs_version: "0.10"
10-
# will be unsupported as soon as 6 becomes LTS and 7 released
5+
# previous LTS is next most important
6+
- nodejs_version: "4"
7+
# then master
118
- nodejs_version: "5"
12-
# technically in LTS / distros, unbeloved
13-
- nodejs_version: "0.12"
149
COVERALLS_REPO_TOKEN:
1510
secure: XdC0aySefK0HLh1GNk6aKrzZPbCfPQLyA4mYtFGEp4DrTuZA/iuCUS0LDqFYO8JQ
1611
platform:
@@ -26,7 +21,7 @@ install:
2621
test_script:
2722
- node --version
2823
- npm --version
29-
- npm test
24+
- npm run test -- --reporter=classic
3025
notifications:
3126
- provider: Slack
3227
incoming_webhook:

‎deps/npm/html/doc/README.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
129+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@3.10.10</p>
130130

‎deps/npm/html/doc/cli/npm-access.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
87+
<p id="footer">npm-access &mdash; npm@3.10.10</p>
8888

‎deps/npm/html/doc/cli/npm-adduser.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
75+
<p id="footer">npm-adduser &mdash; npm@3.10.10</p>
7676

‎deps/npm/html/doc/cli/npm-bin.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
38+
<p id="footer">npm-bin &mdash; npm@3.10.10</p>
3939

‎deps/npm/html/doc/cli/npm-bugs.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
58+
<p id="footer">npm-bugs &mdash; npm@3.10.10</p>
5959

‎deps/npm/html/doc/cli/npm-build.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
43+
<p id="footer">npm-build &mdash; npm@3.10.10</p>
4444

‎deps/npm/html/doc/cli/npm-bundle.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
34+
<p id="footer">npm-bundle &mdash; npm@3.10.10</p>
3535

‎deps/npm/html/doc/cli/npm-cache.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
84+
<p id="footer">npm-cache &mdash; npm@3.10.10</p>
8585

‎deps/npm/html/doc/cli/npm-completion.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
46+
<p id="footer">npm-completion &mdash; npm@3.10.10</p>
4747

‎deps/npm/html/doc/cli/npm-config.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
70+
<p id="footer">npm-config &mdash; npm@3.10.10</p>
7171

‎deps/npm/html/doc/cli/npm-dedupe.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
64+
<p id="footer">npm-dedupe &mdash; npm@3.10.10</p>
6565

‎deps/npm/html/doc/cli/npm-deprecate.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
41+
<p id="footer">npm-deprecate &mdash; npm@3.10.10</p>
4242

‎deps/npm/html/doc/cli/npm-dist-tag.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
90+
<p id="footer">npm-dist-tag &mdash; npm@3.10.10</p>
9191

‎deps/npm/html/doc/cli/npm-docs.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
59+
<p id="footer">npm-docs &mdash; npm@3.10.10</p>
6060

‎deps/npm/html/doc/cli/npm-edit.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
52+
<p id="footer">npm-edit &mdash; npm@3.10.10</p>
5353

‎deps/npm/html/doc/cli/npm-explore.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
52+
<p id="footer">npm-explore &mdash; npm@3.10.10</p>
5353

‎deps/npm/html/doc/cli/npm-help-search.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
48+
<p id="footer">npm-help-search &mdash; npm@3.10.10</p>
4949

‎deps/npm/html/doc/cli/npm-help.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
53+
<p id="footer">npm-help &mdash; npm@3.10.10</p>
5454

‎deps/npm/html/doc/cli/npm-init.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
51+
<p id="footer">npm-init &mdash; npm@3.10.10</p>
5252

‎deps/npm/html/doc/cli/npm-install-test.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
45+
<p id="footer">npm-install-test &mdash; npm@3.10.10</p>
4646

‎deps/npm/html/doc/cli/npm-install.html

Copy file name to clipboardexpand all lines: deps/npm/html/doc/cli/npm-install.html
+1-1
Original file line numberDiff line numberDiff line change
@@ -313,5 +313,5 @@ <h2 id="see-also">SEE ALSO</h2>
313313
<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>
314314
<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>
315315
</table>
316-
<p id="footer">npm-install &mdash; npm@3.10.9</p>
316+
<p id="footer">npm-install &mdash; npm@3.10.10</p>
317317

‎deps/npm/html/doc/cli/npm-link.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
77+
<p id="footer">npm-link &mdash; npm@3.10.10</p>
7878

‎deps/npm/html/doc/cli/npm-logout.html

Copy file name to clipboardexpand all lines: 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; npm@3.10.9</p>
54+
<p id="footer">npm-logout &mdash; npm@3.10.10</p>
5555

‎deps/npm/html/doc/cli/npm-ls.html

Copy file name to clipboardexpand all lines: 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>npm@3.10.9 /path/to/npm
24+
<pre><code>npm@3.10.10 /path/to/npm
2525
└─┬ init-package-json@0.0.4
2626
└── promzard@0.1.5
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; npm@3.10.9</p>
107+
<p id="footer">npm-ls &mdash; npm@3.10.10</p>
108108

‎deps/npm/html/doc/cli/npm-outdated.html

Copy file name to clipboardexpand all lines: deps/npm/html/doc/cli/npm-outdated.html
+1-1
Original file line numberDiff line numberDiff line change
@@ -116,5 +116,5 @@ <h2 id="see-also">SEE ALSO</h2>
116116
<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>
117117
<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>
118118
</table>
119-
<p id="footer">npm-outdated &mdash; npm@3.10.9</p>
119+
<p id="footer">npm-outdated &mdash; npm@3.10.10</p>
120120

‎deps/npm/html/doc/cli/npm-owner.html

Copy file name to clipboardexpand all lines: deps/npm/html/doc/cli/npm-owner.html
+1-1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ <h2 id="see-also">SEE ALSO</h2>
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-owner &mdash; npm@3.10.9</p>
54+
<p id="footer">npm-owner &mdash; npm@3.10.10</p>
5555

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.