Skip to content

Commit ffa7deb

Browse files
zkatjasnell
authored andcommitted
deps: upgrade npm to 5.0.3
PR-URL: #13487 Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent e6e42c1 commit ffa7deb

File tree

243 files changed

+1738
-979
lines changed

Some content is hidden

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

243 files changed

+1738
-979
lines changed

deps/npm/.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ matrix:
1717
# previous LTS is next most important
1818
- node_js: "4"
1919
env: DEPLOY_VERSION=testing
20-
# then master
2120
- node_js: "7"
2221
env: DEPLOY_VERSION=testing
22+
# then master
23+
- node_js: "8"
24+
env: DEPLOY_VERSION=testing
2325
before_install:
2426
# required by test/tap/registry.js
2527
- "mkdir -p /var/run/couchdb"

deps/npm/AUTHORS

+11
Original file line numberDiff line numberDiff line change
@@ -464,3 +464,14 @@ J F <[email protected]>
464464
Pavlo Liulia <[email protected]>
465465
Ján Dzurek <[email protected]>
466466
Lucas Theisen <[email protected]>
467+
Mike Sherov <[email protected]>
468+
薛定谔的猫 <[email protected]>
469+
Paweł Lula <[email protected]>
470+
Jakob Krigovsky <[email protected]>
471+
George Rawlinson <[email protected]>
472+
Jack Nagel <[email protected]>
473+
Andreas Kohn <[email protected]>
474+
Jason Wohlgemuth <[email protected]>
475+
Ryan Graham <[email protected]>
476+
477+
Colin Rotherham <[email protected]>

deps/npm/CHANGELOG.md

+235
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,238 @@
1+
## v5.0.3 (2017-06-05)
2+
3+
Happy Monday, y'all! We've got another npm release for you with the fruits of
4+
our ongoing bugsquashing efforts. You can expect at least one more this week,
5+
but probably more -- and as we announced last week, we'll be merging fixes more
6+
rapidly into the `npmc` canary so you can get everything as soon as possible!
7+
8+
Hope y'all are enjoying npm5 in the meantime, and don't hesitate to file issues
9+
for anything you find! The goal is to get this release rock-solid as soon as we
10+
can. 💚
11+
12+
* [`6e12a5cc0`](https://github.com/npm/npm/commit/6e12a5cc022cb5a157a37df7283b6d7b3d49bdab)
13+
Bump several dependencies to get improvements and bugfixes:
14+
* `cacache`: content files (the tarballs) are now read-only.
15+
* `pacote`: fix failing clones with bad heads, send extra TLS-related opts to proxy, enable global auth configurations and `_auth`-based auth.
16+
* `ssri`: stop crashing with `can't call method find of undefined` when running into a weird `opts.integrity`/`opts.algorithms` conflict during verification.
17+
([@zkat](https://github.com/zkat))
18+
* [`89cc8e3e1`](https://github.com/npm/npm/commit/89cc8e3e12dad67fd9844accf4d41deb4c180c5c)
19+
[#16917](https://github.com/npm/npm/pull/16917)
20+
Send `ca`, `cert` and `key` config through to network layer.
21+
([@colinrotherham](https://github.com/colinrotherham))
22+
* [`6a9b51c67`](https://github.com/npm/npm/commit/6a9b51c67ba3df0372991631992748329b84f2e7)
23+
[#16929](https://github.com/npm/npm/pull/16929)
24+
Send `npm-session` header value with registry requests again.
25+
([@zarenner](https://github.com/zarenner))
26+
* [`662a15ab7`](https://github.com/npm/npm/commit/662a15ab7e790e87f5e5a35252f05d5a4a0724a1)
27+
Fix `npm doctor` so it stop complaining about read-only content files in the
28+
cache.
29+
([@zkat](https://github.com/zkat))
30+
* [`191d10a66`](https://github.com/npm/npm/commit/191d10a6616d72e26d89fd00f5a4f6158bfbc526)
31+
[#16918](https://github.com/npm/npm/pull/16918)
32+
Clarify prepublish deprecation message.
33+
([@Hirse](https://github.com/Hirse))
34+
35+
## v5.0.2 (2017-06-02)
36+
37+
Here's another patch release, soon after the other!
38+
39+
This particular release includes a slew of fixes to npm's git support, which was
40+
causing some issues for a chunk of people, specially those who were using
41+
self-hosted/Enterprise repos. All of those should be back in working condition
42+
now.
43+
44+
There's another shiny thing you might wanna know about: npm has a Canary release
45+
now! The `npm5` experiment we did during our beta proved to be incredibly
46+
successful: users were able to have a tight feedback loop between reports and
47+
getting the bugfixes they needed, and the CLI team was able to roll out
48+
experimental patches and have the community try them out right away. So we want
49+
to keep doing that.
50+
51+
From now on, you'll be able to install the 'npm canary' with `npm i -g npmc`.
52+
This release will be a separate binary (`npmc`. Because canary. Get it?), which
53+
will update independently of the main CLI. Most of the time, this will track
54+
`release-next` or something close to it. We might occasionally toss experimental
55+
branches in there to see if our more adventurous users run into anything
56+
interesting with it. For example, the current canary (`[email protected]`)
57+
includes an [experimental multiproc
58+
branch](https://github.com/npm/npm/pull/16633) that parallelizes tarball
59+
extraction across multiple processes.
60+
61+
If you find any issues while running the canary version, please report them and
62+
let us know it came from `npmc`! It would be tremendously helpful, and finding
63+
things early is a huge reason to have it there. Happy hacking!
64+
65+
### A NOTE ABOUT THE ISSUE TRACKER
66+
67+
Just a heads up: We're preparing to do a massive cleanup of the issue tracker.
68+
It's been a long time since it was something we could really keep up with, and
69+
we didn't have a process for dealing with it that could actually be sustainable.
70+
71+
We're still sussing the details out, and we'll talk about it more when we're
72+
about to do it, but the plan is essentially to close old, abandoned issues and
73+
start over. We will also [add some automation](https://github.com/probot) around
74+
issue management so that things that we can't keep up with don't just stay
75+
around forever.
76+
77+
Stay tuned!
78+
79+
### GIT YOLO
80+
81+
* [`1f26e9567`](https://github.com/npm/npm/commit/1f26e9567a6d14088704e121ebe787c38b6849a4)
82+
`[email protected]`: Fixes installing committishes that look like semver, even
83+
though they're not using the required `#semver:` syntax.
84+
([@zkat](https://github.com/zkat))
85+
* [`85ea1e0b9`](https://github.com/npm/npm/commit/85ea1e0b9478551265d03d545e7dc750b9edf547)
86+
`[email protected]`: This includes the npa git-parsing patch to make it so
87+
non-hosted SCP-style identifiers are correctly handled. Previously, npa would
88+
mangle them (even though hosted-git-info is doing the right thing for them).
89+
([@zkat](https://github.com/zkat))
90+
91+
### COOL NEW OUTPUT
92+
93+
The new summary output has been really well received! One downside that reared
94+
its head as more people used it, though, is that it doesn't really tell you
95+
anything about the toplevel versions it installed. So, if you did `npm i -g
96+
foo`, it would just say "added 1 package". This patch by
97+
[@rmg](https://github.com/rmg) keeps things concise while still telling you
98+
what you got! So now, you'll see something like this:
99+
100+
```
101+
$ npm i -g foo bar
102+
103+
104+
added 234 packages in .005ms
105+
```
106+
107+
* [`362f9fd5b`](https://github.com/npm/npm/commit/362f9fd5bec65301082416b4292b8fe3eb7f824a)
108+
[#16899](https://github.com/npm/npm/pull/16899)
109+
For every package that is given as an argument to install, print the name and
110+
version that was actually installed.
111+
([@rmg](https://github.com/rmg))
112+
113+
### OTHER BUGFIXES
114+
115+
* [`a47593a98`](https://github.com/npm/npm/commit/a47593a98a402143081d7077d2ac677d13083010)
116+
[#16835](https://github.com/npm/npm/pull/16835)
117+
Fix a crash while installing with `--no-shrinkwrap`.
118+
([@jacknagel](https://github.com/jacknagel))
119+
120+
### DOC UPATES
121+
122+
* [`89e0cb816`](https://github.com/npm/npm/commit/89e0cb8165dd9c3c7ac74d531617f367099608f4)
123+
[#16818](https://github.com/npm/npm/pull/16818)
124+
Fixes a spelling error in the docs. Because the CLI team has trouble spelling
125+
"package", I guess.
126+
([@ankon](https://github.com/ankon))
127+
* [`c01fbc46e`](https://github.com/npm/npm/commit/c01fbc46e151bcfb359fd68dd7faa392789b4f55)
128+
[#16895](https://github.com/npm/npm/pull/16895)
129+
Remove `--save` from `npm init` instructions, since it's now the default.
130+
([@jhwohlgemuth](https://github.com/jhwohlgemuth))
131+
* [`80c42d218`](https://github.com/npm/npm/commit/80c42d2181dd4d1b79fcee4e9233df268dfb30b7)
132+
Guard against cycles when inflating bundles, as symlinks are bundles now.
133+
([@iarna](https://github.com/iarna))
134+
* [`7fe7f8665`](https://github.com/npm/npm/commit/7fe7f86658798db6667df89afc75588c0e43bc94)
135+
[#16674](https://github.com/npm/npm/issues/16674)
136+
Write the builtin config for `npmc`, not just `npm`. This is hardcoded for npm
137+
self-installations and is needed for Canary to work right.
138+
([@zkat](https://github.com/zkat))
139+
140+
### DEP UPDATES
141+
142+
* [`63df4fcdd`](https://github.com/npm/npm/commit/63df4fcddc7445efb50cc7d8e09cdd45146d3e39)
143+
[#16894](https://github.com/npm/npm/pull/16894)
144+
[`[email protected]`](https://github.com/nodejs/node-gyp/blob/master/CHANGELOG.md#v362-2017-06-01):
145+
Fixes an issue parsing SDK versions on Windows, among other things.
146+
([@refack](https://github.com/refack))
147+
* [`5bb15c3c4`](https://github.com/npm/npm/commit/5bb15c3c4f0d7d77c73fd6dafa38ac36549b6e00)
148+
`[email protected]`: Fixes some racyness while reading the tree.
149+
([@iarna](https://github.com/iarna))
150+
* [`a6f7a52e7`](https://github.com/npm/npm/commit/a6f7a52e7)
151+
`[email protected]`: Remove nested function declaration for speed up
152+
([@mikesherov](https://github.com/mikesherov))
153+
154+
## v5.0.1 (2017-05-31):
155+
156+
Hey y'all! Hope you're enjoying the new npm!
157+
158+
As you all know, fresh software that's gone through major overhauls tends to
159+
miss a lot of spots the old one used to handle well enough, and `npm@5` is no
160+
exception. The CLI team will be doing faster release cycles that go directly to
161+
the `latest` tag for a couple of weeks while 5 stabilizes a bit and we're
162+
confident the common low-hanging fruit people are running into are all taken
163+
care of.
164+
165+
With that said: this is our first patch release! The biggest focus is fixing up
166+
a number of git-related issues that folks ran into right out the door. It also
167+
fixes other things, like some proxy/auth-related issues, and even has a neat
168+
speed boost! (You can expect more speed bumps in the coming releases as pending
169+
work starts landing, too!)
170+
171+
Thanks everyone who's been reporting issues and submitting patches!
172+
173+
### BUGFIXES
174+
175+
* [`e61e68dac`](https://github.com/npm/npm/commit/e61e68dac4fa51c0540a064204a75b19f8052e58)
176+
[#16762](https://github.com/npm/npm/pull/16762)
177+
Make `npm publish` obey the `--tag` flag again.
178+
([@zkat](https://github.com/zkat))
179+
* [`923fd58d3`](https://github.com/npm/npm/commit/923fd58d312f40f8c17b232ad1dfc8e2ff622dbd)
180+
[#16749](https://github.com/npm/npm/pull/16749)
181+
Speed up installations by nearly 20% by... removing one line of code. (hah)
182+
([@mikesherov](https://github.com/mikesherov))
183+
* [`9aac984cb`](https://github.com/npm/npm/commit/9aac984cbbfef22182ee42b51a193c0b47146ad6)
184+
Guard against a particular failure mode for a bug still being hunted down.
185+
([@iarna](https://github.com/iarna))
186+
* [`80ab521f1`](https://github.com/npm/npm/commit/80ab521f18d34df109de0c5dc9eb1cde5ff6d7e8)
187+
Pull in dependency updates for various core deps:
188+
* New `pacote` fixes several git-related bugs.
189+
* `ssri` update fixes crash on early node@4 versions.
190+
* `make-fetch-happen` update fixes proxy authentication issue.
191+
* `npm-user-validate` adds regex for blocking usernames with illegal chars.
192+
([@zkat](https://github.com/zkat))
193+
* [`7e5ce87b8`](https://github.com/npm/npm/commit/7e5ce87b84880c7433ee4c07d2dd6ce8806df436)
194+
195+
Fixes various other git issues related to commit hashes.
196+
([@zkat](https://github.com/zkat))
197+
* [`acbe85bfc`](https://github.com/npm/npm/commit/acbe85bfc1a68d19ca339a3fb71da0cffbf58926)
198+
[#16791](https://github.com/npm/npm/pull/16791)
199+
`npm view` was calling `cb` prematurely and giving partial output when called
200+
in a child process.
201+
([@zkat](https://github.com/zkat))
202+
* [`ebafe48af`](https://github.com/npm/npm/commit/ebafe48af91f702ccefc8c619d52fed3b8dfd3c7)
203+
[#16750](https://github.com/npm/npm/pull/16750)
204+
Hamilpatch the Musical: Talk less, complete more.
205+
([@aredridel](https://github.com/aredridel))
206+
207+
### DOCUMENTATION
208+
209+
* [`dc2823a6c`](https://github.com/npm/npm/commit/dc2823a6c5fc098041e61515c643570819d059d2)
210+
[#16799](https://github.com/npm/npm/pull/16799)
211+
Document that `package-lock.json` is never allowed in tarballs.
212+
([@sonicdoe](https://github.com/sonicdoe))
213+
* [`f3cb84b44`](https://github.com/npm/npm/commit/f3cb84b446c51d628ee0033cdf13752c15b31a29)
214+
[#16771](https://github.com/npm/npm/pull/16771)
215+
Fix `npm -l` usage information for the `test` command.
216+
([@grawlinson](https://github.com/grawlinson))
217+
218+
### OTHER CHANGES
219+
220+
* [`661262309`](https://github.com/npm/npm/commit/66126230912ab5ab35287b40a9908e036fa73994)
221+
[#16756](https://github.com/npm/npm/pull/16756)
222+
remove unused argument
223+
([@Aladdin-ADD](https://github.com/Aladdin-ADD))
224+
* [`c3e0b4287`](https://github.com/npm/npm/commit/c3e0b4287ea69735cc367aa7bb7e7aa9a6d9804b)
225+
[#16296](https://github.com/npm/npm/pull/16296)
226+
preserve same name convention for command
227+
([@desfero](https://github.com/desfero))
228+
* [`9f814831d`](https://github.com/npm/npm/commit/9f814831d330dde7702973186aea06caaa77ff31)
229+
[#16757](https://github.com/npm/npm/pull/16757)
230+
remove unused argument
231+
([@Aladdin-ADD](https://github.com/Aladdin-ADD))
232+
* [`3cb843239`](https://github.com/npm/npm/commit/3cb8432397b3666d88c31131dbb4599016a983ff)
233+
minor linter fix
234+
([@zkat](https://github.com/zkat))
235+
1236
## v5.0.0 (2017-05-25)
2237

3238
Wowowowowow npm@5!

deps/npm/appveyor.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ environment:
44
- nodejs_version: "6"
55
# previous LTS is next most important
66
- nodejs_version: "4"
7-
# then master
87
- nodejs_version: "7"
8+
# then master
9+
- nodejs_version: "8"
910
COVERALLS_REPO_TOKEN:
1011
secure: XdC0aySefK0HLh1GNk6aKrzZPbCfPQLyA4mYtFGEp4DrTuZA/iuCUS0LDqFYO8JQ
1112
platform:

deps/npm/bin/npm-cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
if (er) return errorHandler(er)
8484
npm.commands[npm.command](npm.argv, function (err) {
8585
// https://www.youtube.com/watch?v=7nfPu8qTiQU
86-
if (!err && npm.config.get('ham-it-up') && !npm.config.get('json') && !npm.config.get('parseable')) {
86+
if (!err && npm.config.get('ham-it-up') && !npm.config.get('json') && !npm.config.get('parseable') && npm.command !== 'completion') {
8787
output('\n 🎵 I Have the Honour to Be Your Obedient Servant,🎵 ~ npm 📜🖋\n')
8888
}
8989
errorHandler.apply(this, arguments)

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

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

+1
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ Conversely, some files are always ignored:
204204
* `node_modules`
205205
* `config.gypi`
206206
* `*.orig`
207+
* `package-lock.json` (use shrinkwrap instead)
207208

208209
## main
209210

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].0</p>
129+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].3</p>
130130

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,5 @@ <h2 id="see-also">SEE ALSO</h2>
8484
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
8585
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
8686
</table>
87-
<p id="footer">npm-access &mdash; [email protected].0</p>
87+
<p id="footer">npm-access &mdash; [email protected].3</p>
8888

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -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-adduser &mdash; [email protected].0</p>
84+
<p id="footer">npm-adduser &mdash; [email protected].3</p>
8585

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].0</p>
38+
<p id="footer">npm-bin &mdash; [email protected].3</p>
3939

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ <h2 id="see-also">SEE ALSO</h2>
5555
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
5656
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
5757
</table>
58-
<p id="footer">npm-bugs &mdash; [email protected].0</p>
58+
<p id="footer">npm-bugs &mdash; [email protected].3</p>
5959

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ <h2 id="description">DESCRIPTION</h2>
4040
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4141
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4242
</table>
43-
<p id="footer">npm-build &mdash; [email protected].0</p>
43+
<p id="footer">npm-build &mdash; [email protected].3</p>
4444

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ <h2 id="see-also">SEE ALSO</h2>
3131
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
3232
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3333
</table>
34-
<p id="footer">npm-bundle &mdash; [email protected].0</p>
34+
<p id="footer">npm-bundle &mdash; [email protected].3</p>
3535

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ <h2 id="see-also">SEE ALSO</h2>
8989
<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>
9090
<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>
9191
</table>
92-
<p id="footer">npm-cache &mdash; [email protected].0</p>
92+
<p id="footer">npm-cache &mdash; [email protected].3</p>
9393

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].0</p>
46+
<p id="footer">npm-completion &mdash; [email protected].3</p>
4747

0 commit comments

Comments
 (0)