Skip to content

Commit 43dd49c

Browse files
zkatMylesBorins
authored andcommitted
deps: upgrade npm to 6.7.0
PR-URL: nodejs#25804 Reviewed-By: Myles Borins <myles.borins@gmail.com>
1 parent b361f95 commit 43dd49c

File tree

1,221 files changed

+65415
-23830
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,221 files changed

+65415
-23830
lines changed

deps/npm/AUTHORS

+7
Original file line numberDiff line numberDiff line change
@@ -612,3 +612,10 @@ Joe Bottigliero <joe@bottigliero.com>
612612
Nikolai Vavilov <vvnicholas@gmail.com>
613613
Kelvin Jin <kelvinjin@google.com>
614614
乱序 <midare@utakana.de>
615+
Audrey Eschright <audrey@npmjs.com>
616+
Xu Meng <dmabupt@gmail.com>
617+
George <george.taveras1231@gmail.com>
618+
Beni von Cheni <benjaminlchen@gmail.com>
619+
Frédéric Harper <fharper@npmjs.com>
620+
Johannes Würbach <johannes.wuerbach@googlemail.com>
621+
ƇʘƁ̆ąƇ́ <anchnk@users.noreply.github.com>

deps/npm/CHANGELOG.md

+307-2
Large diffs are not rendered by default.

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

+8
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ npm-access(1) -- Set access level on published packages
99
npm access grant <read-only|read-write> <scope:team> [<package>]
1010
npm access revoke <scope:team> [<package>]
1111

12+
npm access 2fa-required [<package>]
13+
npm access 2fa-not-required [<package>]
14+
1215
npm access ls-packages [<user>|<scope>|<scope:team>]
1316
npm access ls-collaborators [<package> [<user>]]
1417
npm access edit [<package>]
@@ -28,6 +31,10 @@ subcommand.
2831
Add or remove the ability of users and teams to have read-only or read-write
2932
access to a package.
3033

34+
* 2fa-required / 2fa-not-required:
35+
Configure whether a package requires that anyone publishing it have two-factor
36+
authentication enabled on their account.
37+
3138
* ls-packages:
3239
Show all of the packages a user or a team is able to access, along with the
3340
access level, except for read-only public packages (it won't print the whole
@@ -70,6 +77,7 @@ Management of teams and team memberships is done with the `npm team` command.
7077

7178
## SEE ALSO
7279

80+
* [`libnpmaccess`](https://npm.im/libnpmaccess)
7381
* npm-team(1)
7482
* npm-publish(1)
7583
* npm-config(7)

deps/npm/doc/cli/npm-dist-tag.md

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Add, remove, and enumerate distribution tags on a package:
2626
Show all of the dist-tags for a package, defaulting to the package in
2727
the current prefix.
2828

29+
This is the default action if none is specified.
30+
2931
A tag can be used when installing packages as a reference to a version instead
3032
of using a specific version number:
3133

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

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
npm-org(1) -- Manage orgs
2+
===================================
3+
4+
## SYNOPSIS
5+
6+
npm org set <orgname> <username> [developer | admin | owner]
7+
npm org rm <orgname> <username>
8+
npm org ls <orgname> [<username>]
9+
10+
## EXAMPLE
11+
12+
Add a new developer to an org:
13+
```
14+
$ npm org set my-org @mx-smith
15+
```
16+
17+
Add a new admin to an org (or change a developer to an admin):
18+
```
19+
$ npm org set my-org @mx-santos admin
20+
```
21+
22+
Remove a user from an org:
23+
```
24+
$ npm org rm my-org mx-santos
25+
```
26+
27+
List all users in an org:
28+
```
29+
$ npm org ls my-org
30+
```
31+
32+
List all users in JSON format:
33+
```
34+
$ npm org ls my-org --json
35+
```
36+
37+
See what role a user has in an org:
38+
```
39+
$ npm org ls my-org @mx-santos
40+
```
41+
42+
## DESCRIPTION
43+
44+
You can use the `npm org` commands to manage and view users of an organization.
45+
It supports adding and removing users, changing their roles, listing them, and
46+
finding specific ones and their roles.
47+
48+
## SEE ALSO
49+
50+
* [Documentation on npm Orgs](https://docs.npmjs.com/orgs/)

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ npm-prefix(1) -- Display prefix
88
## DESCRIPTION
99

1010
Print the local prefix to standard out. This is the closest parent directory
11-
to contain a package.json file unless `-g` is also specified.
11+
to contain a `package.json` file or `node_modules` directory, unless `-g` is
12+
also specified.
1213

1314
If `-g` is specified, this will be the value of the global prefix. See
1415
`npm-config(7)` for more detail.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ npm-token(1) -- Manage your authentication tokens
99

1010
## DESCRIPTION
1111

12-
This list you list, create and revoke authentication tokens.
12+
This lets you list, create and revoke authentication tokens.
1313

1414
* `npm token list`:
1515
Shows a table of all active authentication tokens. You can request this as

deps/npm/doc/misc/npm-index.md

+4
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,10 @@ Log out of the registry
125125

126126
List installed packages
127127

128+
### npm-org(1)
129+
130+
Manage orgs
131+
128132
### npm-outdated(1)
129133

130134
Check for outdated packages

deps/npm/doc/misc/semver.md

+16-5
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ As a command-line utility:
2929
```
3030
$ semver -h
3131

32-
SemVer 5.3.0
33-
3432
A JavaScript implementation of the http://semver.org/ specification
3533
Copyright Isaac Z. Schlueter
3634

@@ -54,6 +52,9 @@ Options:
5452
-l --loose
5553
Interpret versions and ranges loosely
5654

55+
-p --include-prerelease
56+
Always include prerelease versions in range matching
57+
5758
-c --coerce
5859
Coerce a string into SemVer if possible
5960
(does not imply --loose)
@@ -289,9 +290,19 @@ part ::= nr | [-0-9A-Za-z]+
289290

290291
## Functions
291292

292-
All methods and classes take a final `loose` boolean argument that, if
293-
true, will be more forgiving about not-quite-valid semver strings.
294-
The resulting output will always be 100% strict, of course.
293+
All methods and classes take a final `options` object argument. All
294+
options in this object are `false` by default. The options supported
295+
are:
296+
297+
- `loose` Be more forgiving about not-quite-valid semver strings.
298+
(Any resulting output will always be 100% strict compliant, of
299+
course.) For backwards compatibility reasons, if the `options`
300+
argument is a boolean value instead of an object, it is interpreted
301+
to be the `loose` param.
302+
- `includePrerelease` Set to suppress the [default
303+
behavior](https://github.com/npm/node-semver#prerelease-tags) of
304+
excluding prerelease tagged versions from ranges unless they are
305+
explicitly opted into.
295306

296307
Strict-mode Comparators and Ranges will be strict about the SemVer
297308
strings that they parse.

deps/npm/html/doc/README.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h3 id="other-sorts-of-unices">Other Sorts of Unices</h3>
3434
<p>Run <code>make install</code>. npm will be installed with node.</p>
3535
<p>If you want a more fancy pants install (a different version, customized
3636
paths, etc.) then read on.</p>
37-
<h2 id="fancy-install-unix-">Fancy Install (Unix)</h2>
37+
<h2 id="fancy-install-unix">Fancy Install (Unix)</h2>
3838
<p>There&#39;s a pretty robust install script at
3939
<a href="https://www.npmjs.com/install.sh">https://www.npmjs.com/install.sh</a>. You can download that and run it.</p>
4040
<p>Here&#39;s an example using curl:</p>
@@ -118,5 +118,5 @@ <h2 id="see-also">SEE ALSO</h2>
118118
<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>
119119
<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>
120120
</table>
121-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@6.5.0</p>
121+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@6.7.0</p>
122122

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

+9-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ <h2 id="synopsis">SYNOPSIS</h2>
1717
npm access grant &lt;read-only|read-write&gt; &lt;scope:team&gt; [&lt;package&gt;]
1818
npm access revoke &lt;scope:team&gt; [&lt;package&gt;]
1919

20+
npm access 2fa-required [&lt;package&gt;]
21+
npm access 2fa-not-required [&lt;package&gt;]
22+
2023
npm access ls-packages [&lt;user&gt;|&lt;scope&gt;|&lt;scope:team&gt;]
2124
npm access ls-collaborators [&lt;package&gt; [&lt;user&gt;]]
2225
npm access edit [&lt;package&gt;]</code></pre><h2 id="description">DESCRIPTION</h2>
@@ -32,6 +35,10 @@ <h2 id="synopsis">SYNOPSIS</h2>
3235
Add or remove the ability of users and teams to have read-only or read-write
3336
access to a package.</p>
3437
</li>
38+
<li><p>2fa-required / 2fa-not-required:
39+
Configure whether a package requires that anyone publishing it have two-factor
40+
authentication enabled on their account.</p>
41+
</li>
3542
<li><p>ls-packages:
3643
Show all of the packages a user or a team is able to access, along with the
3744
access level, except for read-only public packages (it won&#39;t print the whole
@@ -68,6 +75,7 @@ <h2 id="details">DETAILS</h2>
6875
<p>Management of teams and team memberships is done with the <code>npm team</code> command.</p>
6976
<h2 id="see-also">SEE ALSO</h2>
7077
<ul>
78+
<li><a href="https://npm.im/libnpmaccess"><code>libnpmaccess</code></a></li>
7179
<li><a href="../cli/npm-team.html">npm-team(1)</a></li>
7280
<li><a href="../cli/npm-publish.html">npm-publish(1)</a></li>
7381
<li><a href="../misc/npm-config.html">npm-config(7)</a></li>
@@ -85,5 +93,5 @@ <h2 id="see-also">SEE ALSO</h2>
8593
<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>
8694
<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>
8795
</table>
88-
<p id="footer">npm-access &mdash; npm@6.5.0</p>
96+
<p id="footer">npm-access &mdash; npm@6.7.0</p>
8997

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ <h2 id="see-also">SEE ALSO</h2>
7878
<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>
7979
<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>
8080
</table>
81-
<p id="footer">npm-adduser &mdash; npm@6.5.0</p>
81+
<p id="footer">npm-adduser &mdash; npm@6.7.0</p>
8282

deps/npm/html/doc/cli/npm-audit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,4 @@ <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-audit &mdash; npm@6.5.0</p>
84+
<p id="footer">npm-audit &mdash; npm@6.7.0</p>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ <h2 id="see-also">SEE ALSO</h2>
3434
<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>
3535
<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>
3636
</table>
37-
<p id="footer">npm-bin &mdash; npm@6.5.0</p>
37+
<p id="footer">npm-bin &mdash; npm@6.7.0</p>
3838

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ <h2 id="see-also">SEE ALSO</h2>
5454
<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>
5555
<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>
5656
</table>
57-
<p id="footer">npm-bugs &mdash; npm@6.5.0</p>
57+
<p id="footer">npm-bugs &mdash; npm@6.7.0</p>
5858

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ <h2 id="description">DESCRIPTION</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-build &mdash; npm@6.5.0</p>
41+
<p id="footer">npm-build &mdash; npm@6.7.0</p>
4242

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@6.5.0</p>
34+
<p id="footer">npm-bundle &mdash; npm@6.7.0</p>
3535

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ <h2 id="details">DETAILS</h2>
5252
directly.</p>
5353
<p>npm will not remove data by itself: the cache will grow as new packages are
5454
installed.</p>
55-
<h2 id="a-note-about-the-cache-s-design">A NOTE ABOUT THE CACHE&#39;S DESIGN</h2>
55+
<h2 id="a-note-about-the-caches-design">A NOTE ABOUT THE CACHE&#39;S DESIGN</h2>
5656
<p>The npm cache is strictly a cache: it should not be relied upon as a persistent
5757
and reliable data store for package data. npm makes no guarantee that a
5858
previously-cached piece of data will be available later, and will automatically
@@ -88,5 +88,5 @@ <h2 id="see-also">SEE ALSO</h2>
8888
<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>
8989
<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>
9090
</table>
91-
<p id="footer">npm-cache &mdash; npm@6.5.0</p>
91+
<p id="footer">npm-cache &mdash; npm@6.7.0</p>
9292

deps/npm/html/doc/cli/npm-ci.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ <h2 id="see-also">SEE ALSO</h2>
5858
<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>
5959
<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>
6060
</table>
61-
<p id="footer">npm-ci &mdash; npm@6.5.0</p>
61+
<p id="footer">npm-ci &mdash; npm@6.7.0</p>

deps/npm/html/doc/cli/npm-completion.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-completion &mdash; npm@6.5.0</p>
45+
<p id="footer">npm-completion &mdash; npm@6.7.0</p>
4646

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ <h2 id="see-also">SEE ALSO</h2>
6262
<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>
6363
<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>
6464
</table>
65-
<p id="footer">npm-config &mdash; npm@6.5.0</p>
65+
<p id="footer">npm-config &mdash; npm@6.7.0</p>
6666

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ <h2 id="see-also">SEE ALSO</h2>
5858
<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>
5959
<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>
6060
</table>
61-
<p id="footer">npm-dedupe &mdash; npm@6.5.0</p>
61+
<p id="footer">npm-dedupe &mdash; npm@6.7.0</p>
6262

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@6.5.0</p>
41+
<p id="footer">npm-deprecate &mdash; npm@6.7.0</p>
4242

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ <h2 id="synopsis">SYNOPSIS</h2>
3030
<li><p>ls:
3131
Show all of the dist-tags for a package, defaulting to the package in
3232
the current prefix.</p>
33+
<p>This is the default action if none is specified.</p>
3334
</li>
3435
</ul>
3536
<p>A tag can be used when installing packages as a reference to a version instead
@@ -85,5 +86,5 @@ <h2 id="see-also">SEE ALSO</h2>
8586
<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>
8687
<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>
8788
</table>
88-
<p id="footer">npm-dist-tag &mdash; npm@6.5.0</p>
89+
<p id="footer">npm-dist-tag &mdash; npm@6.7.0</p>
8990

deps/npm/html/doc/cli/npm-docs.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-docs &mdash; npm@6.5.0</p>
58+
<p id="footer">npm-docs &mdash; npm@6.7.0</p>
5959

deps/npm/html/doc/cli/npm-doctor.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ <h3 id="npm-ping"><code>npm ping</code></h3>
4141
what that is by running <code>npm config get registry</code>), and if you&#39;re using a
4242
private registry that doesn&#39;t support the <code>/whoami</code> endpoint supported by the
4343
primary registry, this check may fail.</p>
44-
<h3 id="npm-v"><code>npm -v</code></h3>
44+
<h3 id="npm--v"><code>npm -v</code></h3>
4545
<p>While Node.js may come bundled with a particular version of npm, it&#39;s the
4646
policy of the CLI team that we recommend all users run <code>npm@latest</code> if they
4747
can. As the CLI is maintained by a small team of contributors, there are only
4848
resources for a single line of development, so npm&#39;s own long-term support
4949
releases typically only receive critical security and regression fixes. The
5050
team believes that the latest tested version of npm is almost always likely to
5151
be the most functional and defect-free version of npm.</p>
52-
<h3 id="node-v"><code>node -v</code></h3>
52+
<h3 id="node--v"><code>node -v</code></h3>
5353
<p>For most users, in most circumstances, the best version of Node will be the
5454
latest long-term support (LTS) release. Those of you who want access to new
5555
ECMAscript features or bleeding-edge changes to Node&#39;s standard library may be
@@ -102,4 +102,4 @@ <h2 id="see-also">SEE ALSO</h2>
102102
<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>
103103
<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>
104104
</table>
105-
<p id="footer">npm-doctor &mdash; npm@6.5.0</p>
105+
<p id="footer">npm-doctor &mdash; npm@6.7.0</p>

deps/npm/html/doc/cli/npm-edit.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-edit &mdash; npm@6.5.0</p>
53+
<p id="footer">npm-edit &mdash; npm@6.7.0</p>
5454

0 commit comments

Comments
 (0)