Skip to content

Commit 033f6b5

Browse files
zkatMylesBorins
authored andcommitted
deps: upgrade npm to 6.9.0
Co-authored-by: Myles Borins <[email protected]> PR-URL: #26244 Reviewed-By: Myles Borins <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent 58aaf58 commit 033f6b5

File tree

505 files changed

+6027
-1596
lines changed

Some content is hidden

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

505 files changed

+6027
-1596
lines changed

deps/npm/.licensee.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"license": "(MIT OR BSD-2-Clause OR BSD-3-Clause OR Apache-2.0 OR ISC OR Unlicense OR CC-BY-3.0 OR CC0-1.0 OR Artistic-2.0)",
3+
"corrections": true,
34
"whitelist": {
45
"config-chain": "1.1.12",
56
"cyclist": "0.2.2",

deps/npm/.npmignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ npm-debug.log
44
/.github
55
/test
66
node_modules/marked
7-
node_modules/ronn
7+
node_modules/marked-man
88
node_modules/tap
99
node_modules/.bin
1010
node_modules/npm-registry-mock

deps/npm/AUTHORS

+11
Original file line numberDiff line numberDiff line change
@@ -619,3 +619,14 @@ Beni von Cheni <[email protected]>
619619
Frédéric Harper <[email protected]>
620620
Johannes Würbach <[email protected]>
621621
ƇʘƁ̆ąƇ́ <[email protected]>
622+
Eli Doran <[email protected]>
623+
Tobias Koppers <[email protected]>
624+
Grey Baker <[email protected]>
625+
JT Turner <[email protected]>
626+
Audrey Eschright <[email protected]>
627+
Alexander Gudulin <[email protected]>
628+
Philipp Hagemeister <[email protected]>
629+
Amadou Sall <[email protected]>
630+
Chris Manson <[email protected]>
631+
632+
Emilis Dambauskas (Tokenmill) <[email protected]>

deps/npm/CHANGELOG.md

+171
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,174 @@
1+
## v6.9.0 (2018-02-20):
2+
3+
### FEATURES
4+
5+
* [`2ba3a0f67`](https://github.com/npm/cli/commit/2ba3a0f6721f6d5a16775aebce6012965634fc7c)
6+
[#90](https://github.com/npm/cli/pull/90)
7+
Time traveling installs using the `--before` flag.
8+
([@zkat](https://github.com/zkat))
9+
* [`b7b54f2d1`](https://github.com/npm/cli/commit/b7b54f2d18e2d8d65ec67c850b21ae9f01c60e7e)
10+
[#3](https://github.com/npm/cli/pull/3)
11+
Add support for package aliases. This allows packages to be installed under a
12+
different directory than the package name listed in `package.json`, and adds a
13+
new dependency type to allow this to be done for registry dependencies.
14+
([@zkat](https://github.com/zkat))
15+
* [`684bccf06`](https://github.com/npm/cli/commit/684bccf061dfc97bb759121bc0ad635e01c65868)
16+
[#146](https://github.com/npm/cli/pull/146)
17+
Always save `package-lock.json` when using `--package-lock-only`.
18+
([@aeschright](https://github.com/aeschright))
19+
* [`b8b8afd40`](https://github.com/npm/cli/commit/b8b8afd4048b4ba1181e00ba2ac49ced43936ce0)
20+
[#139](https://github.com/npm/cli/pull/139)
21+
Make empty-string run-scripts run successfully as a no-op.
22+
([@vlasy](https://github.com/vlasy))
23+
* [`8047b19b1`](https://github.com/npm/cli/commit/8047b19b1b994fd4b4e7b5c91d7cc4e0384bd5e4)
24+
[npm.community#3784](https://npm.community/t/3784)
25+
Match git semver ranges when flattening the tree.
26+
([@larsgw](https://github.com/larsgw))
27+
* [`e135c2bb3`](https://github.com/npm/cli/commit/e135c2bb360dcf00ecee34a95985afec21ba3655)
28+
[npm.community#1725](https://npm.community/t/1725?u=larsgw)
29+
Re-enable updating local packages.
30+
([@larsgw](https://github.com/larsgw))
31+
32+
### BUGFIXES
33+
34+
* [`cf09fbaed`](https://github.com/npm/cli/commit/cf09fbaed489d908e9b551382cc5f61bdabe99a9)
35+
[#153](https://github.com/npm/cli/pull/153)
36+
Set modified to undefined in `npm view` when `time` is not available. This
37+
fixes a bug where `npm view` would crash on certain third-party registries.
38+
([@simonua](https://github.com/simonua))
39+
* [`774fc26ee`](https://github.com/npm/cli/commit/774fc26eeb01345c11bd8c97e2c4f328d419d9b5)
40+
[#154](https://github.com/npm/cli/pull/154)
41+
Print out tar version in `install.sh` only when the flag is supported not all
42+
the tar implementations support --version flag. This allows the install script
43+
to work in OpenBSD, for example.
44+
([@agudulin](https://github.com/agudulin))
45+
* [`863baff11`](https://github.com/npm/cli/commit/863baff11d8c870f1a0d9619bb5133c67d71e407)
46+
[#158](https://github.com/npm/cli/pull/158)
47+
Fix typo in error message for `npm stars`.
48+
([@phihag](https://github.com/phihag))
49+
* [`a805a95ad`](https://github.com/npm/cli/commit/a805a95ad8832ef5008671f4bd4c11b83e32e0f2)
50+
[npm.community#4227](https://npm.community/t/4227)
51+
Strip version info from pkg on E404. This improves the error messaging format.
52+
([@larsgw](https://github.com/larsgw))
53+
54+
### DOCS
55+
56+
* [`5d7633833`](https://github.com/npm/cli/commit/5d76338338621fd0b3d4f7914a51726d27569ee1)
57+
[#160](https://github.com/npm/cli/pull/160)
58+
Add `npm add` as alias to npm install in docs.
59+
([@ahasall](https://github.com/ahasall))
60+
* [`489c2211c`](https://github.com/npm/cli/commit/489c2211c96a01d65df50fd57346c785bcc3efe6)
61+
[#162](https://github.com/npm/cli/pull/162)
62+
Fix link to RFC #10 in the changelog.
63+
([@mansona](https://github.com/mansona))
64+
* [`433020ead`](https://github.com/npm/cli/commit/433020ead5251b562bc3b0f5f55341a5b8cc9023)
65+
[#135](https://github.com/npm/cli/pull/135)
66+
Describe exit codes in npm-audit docs.
67+
([@emilis-tm](https://github.com/emilis-tm))
68+
69+
### DEPENDENCIES
70+
71+
* [`ee6b6746b`](https://github.com/npm/cli/commit/ee6b6746b04f145dfe489af2d26667ac32ba0cef)
72+
[zkat/make-fetch-happen#29](https://github.com/zkat/make-fetch-happen/issues/29)
73+
74+
([@TooTallNate](https://github.com/TooTallNate))
75+
* [`2ce23baf5`](https://github.com/npm/cli/commit/2ce23baf53b1ce7d11b8efb80c598ddaf9cef9e7)
76+
77+
Adds support for package aliases
78+
([@zkat](https://github.com/zkat))
79+
* [`baaedbc6e`](https://github.com/npm/cli/commit/baaedbc6e2fc370d73b35e7721794719115507cc)
80+
81+
Adds opts.before support
82+
([@zkat](https://github.com/zkat))
83+
* [`57e771a03`](https://github.com/npm/cli/commit/57e771a032165d1e31e71d0ff7530442139c21a6)
84+
[#164](https://github.com/npm/cli/pull/164)
85+
86+
([@kemitchell](https://github.com/kemitchell))
87+
* [`2b78288d4`](https://github.com/npm/cli/commit/2b78288d4accd10c1b7cc6c36bc28045f5634d91)
88+
add core to default inclusion tests in pack
89+
([@Kat Marchán](https://github.com/Kat Marchán))
90+
* [`9b8b6513f`](https://github.com/npm/cli/commit/9b8b6513fbce92764b32a067322984985ff683fe)
91+
[npm.community#5382](https://npm.community/t/npm-pack-leaving-out-files-6-8-0-only/5382)
92+
`[email protected]`: Fixes bug where `core/` directories were being suddenly excluded.
93+
([@zkat](https://github.com/zkat))
94+
95+
## v6.8.0 (2019-02-07):
96+
97+
This release includes an implementation of [RFC #10](https://github.com/npm/rfcs/blob/latest/implemented/0010-monorepo-subdirectory-declaration.md), documenting an optional field that can be used to specify
98+
the directory path for a package within a monorepo.
99+
100+
### NEW FEATURES
101+
102+
* [`3663cdef2`](https://github.com/npm/cli/commit/3663cdef205fa9ba2c2830e5ef7ceeb31c30298c)
103+
[#140](https://github.com/npm/cli/pull/140)
104+
Update package.json docs to include repository.directory details.
105+
([@greysteil](https://github.com/greysteil))
106+
107+
### BUGFIXES
108+
109+
* [`550bf703a`](https://github.com/npm/cli/commit/550bf703ae3e31ba6a300658ae95b6937f67b68f)
110+
Add @types to ignore list to fix git clean -fd.
111+
([@zkat](https://github.com/zkat))
112+
* [`cdb059293`](https://github.com/npm/cli/commit/cdb0592939d6256c80f7ec5a2b6251131a512a2a)
113+
[#144](https://github.com/npm/cli/pull/144)
114+
Fix common.npm callback arguments.
115+
([@larsgw](https://github.com/larsgw))
116+
* [`25573e9b9`](https://github.com/npm/cli/commit/25573e9b9d5d26261c68d453f06db5b3b1cd6789)
117+
[npm.community#4770](https://npm.community/t/https://npm.community/t/4770)
118+
Show installed but unmet peer deps.
119+
([@larsgw](https://github.com/larsgw))
120+
* [`ce2c4bd1a`](https://github.com/npm/cli/commit/ce2c4bd1a2ce7ac1727a4ca9a350b743a2e27b2a)
121+
[#149](https://github.com/npm/cli/pull/149)
122+
Use figgy-config to make sure extra opts are there.
123+
([@zkat](https://github.com/zkat))
124+
* [`3c22d1a35`](https://github.com/npm/cli/commit/3c22d1a35878f73c0af8ea5968b962a85a1a9b84)
125+
[npm.community#5101](https://npm.community/t/npm-6-6-0-breaks-access-to-ls-collaborators/5101)
126+
Fix `ls-collaborators` access error for non-scoped case.
127+
([@zkat](https://github.com/zkat))
128+
* [`d5137091d`](https://github.com/npm/cli/commit/d5137091dd695a2980f7ade85fdc56b2421ff677)
129+
[npm.community#754](https://npm.community/t/npm-install-for-package-with-local-dependency-fails/754)
130+
Fix issue with sub-folder local references.
131+
([@iarna](https://github.com/iarna))
132+
([@jhecking](https://github.com/jhecking))
133+
134+
### DEPENDENCY BUMPS
135+
136+
* [`d72141080`](https://github.com/npm/cli/commit/d72141080ec8fcf35bcc5650245efbe649de053e)
137+
138+
([@zkat](https://github.com/zkat))
139+
* [`671cad1b1`](https://github.com/npm/cli/commit/671cad1b18239d540da246d6f78de45d9f784396)
140+
141+
Make sure publishing with legacy username:password `_auth` works again.
142+
([@zkat](https://github.com/zkat))
143+
* [`95ca1aef4`](https://github.com/npm/cli/commit/95ca1aef4077c8e68d9f4dce37f6ba49b591c4ca)
144+
145+
([@aeschright](https://github.com/aeschright))
146+
* [`322fef403`](https://github.com/npm/cli/commit/322fef40376e71cd100159dc914e7ca89faae327)
147+
148+
([@aeschright](https://github.com/aeschright))
149+
* [`32d34c0da`](https://github.com/npm/cli/commit/32d34c0da4f393a74697297667eb9226155ecc6b)
150+
151+
([@aeschright](https://github.com/aeschright))
152+
* [`338571cf0`](https://github.com/npm/cli/commit/338571cf0bd3a1e2ea800464d57581932ff0fb11)
153+
154+
([@zkat](https://github.com/zkat))
155+
156+
### MISC
157+
158+
* [`89b23a5f7`](https://github.com/npm/cli/commit/89b23a5f7b0ccdcdda1d7d4d3eafb6903156d186)
159+
[#120](https://github.com/npm/cli/pull/120)
160+
Use `const` in lib/fetch-package-metadata.md.
161+
([@watilde](https://github.com/watilde))
162+
* [`4970d553c`](https://github.com/npm/cli/commit/4970d553c0ea66128931d118469fd31c87cc7986)
163+
[#126](https://github.com/npm/cli/pull/126)
164+
Replace ronn with marked-man in `.npmignore`.
165+
([@watilde](https://github.com/watilde))
166+
* [`d9b6090dc`](https://github.com/npm/cli/commit/d9b6090dc26cd0fded18b4f80248cff3e51bb185)
167+
[#138](https://github.com/npm/cli/pull/138)
168+
Reduce work to test if executable ends with a 'g'.
169+
([@elidoran](https://github.com/elidoran))
170+
([@larsgw](https://github.com/larsgw))
171+
1172
## v6.7.0 (2019-01-23):
2173

3174
Hey y'all! This is a quick hotfix release that includes some important fixes to

deps/npm/bin/npm-cli.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
unsupported.checkForUnsupportedNode()
2727

28-
var path = require('path')
2928
var npm = require('../lib/npm.js')
3029
var npmconf = require('../lib/config/core.js')
3130
var errorHandler = require('../lib/utils/error-handler.js')
@@ -37,7 +36,7 @@
3736

3837
// if npm is called as "npmg" or "npm_g", then
3938
// run in global mode.
40-
if (path.basename(process.argv[1]).slice(-1) === 'g') {
39+
if (process.argv[1][process.argv[1].length - 1] === 'g') {
4140
process.argv.splice(1, 1, 'npm', '-g')
4241
}
4342

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

+9-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ $ npm audit --parseable | awk -F $'\t' '{print $1,$4}'
6565
The audit command submits a description of the dependencies configured in
6666
your project to your default registry and asks for a report of known
6767
vulnerabilities. The report returned includes instructions on how to act on
68-
this information.
68+
this information. The command will exit with a 0 exit code if no
69+
vulnerabilities were found.
6970

7071
You can also have npm automatically fix the vulnerabilities by running `npm
7172
audit fix`. Note that some vulnerabilities cannot be fixed automatically and
@@ -99,6 +100,13 @@ The non-reversible identifiers are a sha256 of a session-specific UUID and the
99100
value being replaced, ensuring a consistent value within the payload that is
100101
different between runs.
101102

103+
## EXIT CODE
104+
105+
The `npm audit` command will exit with a 0 exit code if no vulnerabilities were found.
106+
107+
If vulnerabilities were found the exit code will depend on the `audit-level`
108+
configuration setting.
109+
102110
## SEE ALSO
103111

104112
* npm-install(1)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ npm-install(1) -- Install a package
1414
npm install <tarball url>
1515
npm install <folder>
1616

17-
alias: npm i
17+
aliases: npm i, npm add
1818
common options: [-P|--save-prod|-D|--save-dev|-O|--save-optional] [-E|--save-exact] [-B|--save-bundle] [--no-save] [--dry-run]
1919

2020
## DESCRIPTION

deps/npm/doc/files/package.json.md

+9
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,15 @@ shortcut syntax you use for `npm install`:
393393

394394
"repository": "gitlab:user/repo"
395395

396+
If the `package.json` for your package is not in the root directory (for example
397+
if it is part of a monorepo), you can specify the directory in which it lives:
398+
399+
"repository": {
400+
"type" : "git",
401+
"url" : "https://github.com/facebook/react.git",
402+
"directory": "packages/react-dom"
403+
}
404+
396405
## scripts
397406

398407
The "scripts" property is a dictionary containing script commands that are run

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

+16
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,22 @@ a non-zero exit code.
179179

180180
What authentication strategy to use with `adduser`/`login`.
181181

182+
### before
183+
184+
* Alias: enjoy-by
185+
* Default: null
186+
* Type: Date
187+
188+
If passed to `npm install`, will rebuild the npm tree such that only versions
189+
that were available **on or before** the `--before` time get installed.
190+
If there's no versions available for the current set of direct dependencies, the
191+
command will error.
192+
193+
If the requested version is a `dist-tag` and the given tag does not pass the
194+
`--before` filter, the most recent version less than or equal to that tag will
195+
be used. For example, `foo@latest` might install `[email protected]` even though `latest`
196+
is `2.0`.
197+
182198
### bin-links
183199

184200
* Default: `true`

deps/npm/html/doc/README.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -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.7.0</p>
121+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@6.9.0</p>
122122

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,5 @@ <h2 id="see-also">SEE ALSO</h2>
9393
<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>
9494
<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>
9595
</table>
96-
<p id="footer">npm-access &mdash; npm@6.7.0</p>
96+
<p id="footer">npm-access &mdash; npm@6.9.0</p>
9797

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.7.0</p>
81+
<p id="footer">npm-adduser &mdash; npm@6.9.0</p>
8282

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

+7-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ <h2 id="synopsis">SYNOPSIS</h2>
3333
<p>The audit command submits a description of the dependencies configured in
3434
your project to your default registry and asks for a report of known
3535
vulnerabilities. The report returned includes instructions on how to act on
36-
this information.</p>
36+
this information. The command will exit with a 0 exit code if no
37+
vulnerabilities were found.</p>
3738
<p>You can also have npm automatically fix the vulnerabilities by running <code>npm
3839
audit fix</code>. Note that some vulnerabilities cannot be fixed automatically and
3940
will require manual intervention or review. Also note that since <code>npm audit fix</code>
@@ -63,6 +64,10 @@ <h3 id="scrubbing">SCRUBBING</h3>
6364
<p>The non-reversible identifiers are a sha256 of a session-specific UUID and the
6465
value being replaced, ensuring a consistent value within the payload that is
6566
different between runs.</p>
67+
<h2 id="exit-code">EXIT CODE</h2>
68+
<p>The <code>npm audit</code> command will exit with a 0 exit code if no vulnerabilities were found.</p>
69+
<p>If vulnerabilities were found the exit code will depend on the <code>audit-level</code>
70+
configuration setting.</p>
6671
<h2 id="see-also">SEE ALSO</h2>
6772
<ul>
6873
<li><a href="../cli/npm-install.html">npm-install(1)</a></li>
@@ -81,4 +86,4 @@ <h2 id="see-also">SEE ALSO</h2>
8186
<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>
8287
<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>
8388
</table>
84-
<p id="footer">npm-audit &mdash; npm@6.7.0</p>
89+
<p id="footer">npm-audit &mdash; npm@6.9.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.7.0</p>
37+
<p id="footer">npm-bin &mdash; npm@6.9.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.7.0</p>
57+
<p id="footer">npm-bugs &mdash; npm@6.9.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.7.0</p>
41+
<p id="footer">npm-build &mdash; npm@6.9.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.7.0</p>
34+
<p id="footer">npm-bundle &mdash; npm@6.9.0</p>
3535

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -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.7.0</p>
91+
<p id="footer">npm-cache &mdash; npm@6.9.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.7.0</p>
61+
<p id="footer">npm-ci &mdash; npm@6.9.0</p>

0 commit comments

Comments
 (0)