Skip to content

Commit c04fd2b

Browse files
npm-robottargos
authored andcommitted
deps: upgrade npm to 7.19.1
PR-URL: #39225 Reviewed-By: Ruy Adorno <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent 20cc8ec commit c04fd2b

Some content is hidden

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

93 files changed

+131
-254
lines changed

Diff for: deps/npm/docs/content/configuring-npm/package-json.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -549,12 +549,8 @@ had the following:
549549
}
550550
```
551551

552-
and then had a "start" command that then referenced the
553-
`npm_package_config_port` environment variable, then the user could
554-
override that by doing `npm config set foo:port 8001`.
555-
556-
See [`config`](/using-npm/config) and [`scripts`](/using-npm/scripts) for
557-
more on package configs.
552+
It could also have a "start" command that referenced the
553+
`npm_package_config_port` environment variable.
558554

559555
### dependencies
560556

Diff for: deps/npm/docs/content/using-npm/scripts.md

+1-48
Original file line numberDiff line numberDiff line change
@@ -245,41 +245,7 @@ package.json file, then your package scripts would have the
245245
in your code with `process.env.npm_package_name` and
246246
`process.env.npm_package_version`, and so on for other fields.
247247

248-
#### configuration
249-
250-
Configuration parameters are put in the environment with the
251-
`npm_config_` prefix. For instance, you can view the effective `root`
252-
config by checking the `npm_config_root` environment variable.
253-
254-
#### Special: package.json "config" object
255-
256-
The package.json "config" keys are overwritten in the environment if
257-
there is a config param of `<name>[@<version>]:<key>`. For example,
258-
if the package.json has this:
259-
260-
```json
261-
{
262-
"name" : "foo",
263-
"config" : {
264-
"port" : "8080"
265-
},
266-
"scripts" : {
267-
"start" : "node server.js"
268-
}
269-
}
270-
```
271-
272-
and the server.js is this:
273-
274-
```javascript
275-
http.createServer(...).listen(process.env.npm_package_config_port)
276-
```
277-
278-
then the user could change the behavior by doing:
279-
280-
```bash
281-
npm config set foo:port 80
282-
```
248+
See [`package-json.md`](/using-npm/package-json) for more on package configs.
283249

284250
#### current lifecycle event
285251

@@ -341,19 +307,6 @@ Note that these script files don't have to be nodejs or even
341307
javascript programs. They just have to be some kind of executable
342308
file.
343309

344-
### Hook Scripts
345-
346-
If you want to run a specific script at a specific lifecycle event for
347-
ALL packages, then you can use a hook script.
348-
349-
Place an executable file at `node_modules/.hooks/{eventname}`, and
350-
it'll get run for all packages when they are going through that point
351-
in the package lifecycle for any packages installed in that root.
352-
353-
Hook scripts are run exactly the same way as package.json scripts.
354-
That is, they are in a separate child process, with the env described
355-
above.
356-
357310
### Best Practices
358311

359312
* Don't exit with a non-zero error code unless you *really* mean it.

Diff for: deps/npm/docs/output/commands/npm-ls.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ <h3 id="description">Description</h3>
159159
the results to only the paths to the packages named. Note that nested
160160
packages will <em>also</em> show the paths to the specified packages. For
161161
example, running <code>npm ls promzard</code> in npm’s source tree will show:</p>
162-
<pre lang="bash"><code>[email protected].0 /path/to/npm
162+
<pre lang="bash"><code>[email protected].1 /path/to/npm
163163
164164
165165
</code></pre>

Diff for: deps/npm/docs/output/commands/npm.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ <h2 id="table-of-contents">Table of contents</h2>
148148
<pre lang="bash"><code>npm &lt;command&gt; [args]
149149
</code></pre>
150150
<h3 id="version">Version</h3>
151-
<p>7.19.0</p>
151+
<p>7.19.1</p>
152152
<h3 id="description">Description</h3>
153153
<p>npm is the package manager for the Node JavaScript platform. It puts
154154
modules in place so that node can find them, and manages dependency

Diff for: deps/npm/docs/output/configuring-npm/package-json.html

+2-5
Original file line numberDiff line numberDiff line change
@@ -555,11 +555,8 @@ <h3 id="config">config</h3>
555555
}
556556
}
557557
</code></pre>
558-
<p>and then had a “start” command that then referenced the
559-
<code>npm_package_config_port</code> environment variable, then the user could
560-
override that by doing <code>npm config set foo:port 8001</code>.</p>
561-
<p>See <a href="../using-npm/config.html"><code>config</code></a> and <a href="../using-npm/scripts.html"><code>scripts</code></a> for
562-
more on package configs.</p>
558+
<p>It could also have a “start” command that referenced the
559+
<code>npm_package_config_port</code> environment variable.</p>
563560
<h3 id="dependencies">dependencies</h3>
564561
<p>Dependencies are specified in a simple object that maps a package name to a
565562
version range. The version range is a string which has one or more

Diff for: deps/npm/docs/output/using-npm/scripts.html

+2-34
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ <h1 id="scripts">scripts</h1>
141141

142142
<section id="table_of_contents">
143143
<h2 id="table-of-contents">Table of contents</h2>
144-
<div id="_table_of_contents"><ul><li><a href="#description">Description</a></li><li><a href="#pre--post-scripts">Pre &amp; Post Scripts</a></li><li><a href="#life-cycle-scripts">Life Cycle Scripts</a></li><ul><li><a href="#prepare-and-prepublish">Prepare and Prepublish</a></li></ul><li><a href="#life-cycle-operation-order">Life Cycle Operation Order</a></li><ul><li><a href="#npm-cache-add"><a href="../commands/npm-cache.html"><code>npm cache add</code></a></a></li><li><a href="#npm-ci"><a href="../commands/npm-ci.html"><code>npm ci</code></a></a></li><li><a href="#npm-diff"><a href="../commands/npm-diff.html"><code>npm diff</code></a></a></li><li><a href="#npm-install"><a href="../commands/npm-install.html"><code>npm install</code></a></a></li><li><a href="#npm-pack"><a href="../commands/npm-pack.html"><code>npm pack</code></a></a></li><li><a href="#npm-publish"><a href="../commands/npm-publish.html"><code>npm publish</code></a></a></li><li><a href="#npm-rebuild"><a href="../commands/npm-rebuild.html"><code>npm rebuild</code></a></a></li><li><a href="#npm-restart"><a href="../commands/npm-restart.html"><code>npm restart</code></a></a></li><li><a href="#npm-run-user-defined"><a href="../commands/npm-run-script.html"><code>npm run &lt;user defined&gt;</code></a></a></li><li><a href="#npm-start"><a href="../commands/npm-start.html"><code>npm start</code></a></a></li><li><a href="#npm-stop"><a href="../commands/npm-stop.html"><code>npm stop</code></a></a></li><li><a href="#npm-test"><a href="../commands/npm-test.html"><code>npm test</code></a></a></li></ul><li><a href="#user">User</a></li><li><a href="#environment">Environment</a></li><ul><li><a href="#path">path</a></li><li><a href="#packagejson-vars">package.json vars</a></li><li><a href="#configuration">configuration</a></li><li><a href="#special-packagejson-config-object">Special: package.json “config” object</a></li><li><a href="#current-lifecycle-event">current lifecycle event</a></li></ul><li><a href="#examples">Examples</a></li><li><a href="#exiting">Exiting</a></li><li><a href="#hook-scripts">Hook Scripts</a></li><li><a href="#best-practices">Best Practices</a></li><li><a href="#see-also">See Also</a></li></ul></div>
144+
<div id="_table_of_contents"><ul><li><a href="#description">Description</a></li><li><a href="#pre--post-scripts">Pre &amp; Post Scripts</a></li><li><a href="#life-cycle-scripts">Life Cycle Scripts</a></li><ul><li><a href="#prepare-and-prepublish">Prepare and Prepublish</a></li></ul><li><a href="#life-cycle-operation-order">Life Cycle Operation Order</a></li><ul><li><a href="#npm-cache-add"><a href="../commands/npm-cache.html"><code>npm cache add</code></a></a></li><li><a href="#npm-ci"><a href="../commands/npm-ci.html"><code>npm ci</code></a></a></li><li><a href="#npm-diff"><a href="../commands/npm-diff.html"><code>npm diff</code></a></a></li><li><a href="#npm-install"><a href="../commands/npm-install.html"><code>npm install</code></a></a></li><li><a href="#npm-pack"><a href="../commands/npm-pack.html"><code>npm pack</code></a></a></li><li><a href="#npm-publish"><a href="../commands/npm-publish.html"><code>npm publish</code></a></a></li><li><a href="#npm-rebuild"><a href="../commands/npm-rebuild.html"><code>npm rebuild</code></a></a></li><li><a href="#npm-restart"><a href="../commands/npm-restart.html"><code>npm restart</code></a></a></li><li><a href="#npm-run-user-defined"><a href="../commands/npm-run-script.html"><code>npm run &lt;user defined&gt;</code></a></a></li><li><a href="#npm-start"><a href="../commands/npm-start.html"><code>npm start</code></a></a></li><li><a href="#npm-stop"><a href="../commands/npm-stop.html"><code>npm stop</code></a></a></li><li><a href="#npm-test"><a href="../commands/npm-test.html"><code>npm test</code></a></a></li></ul><li><a href="#user">User</a></li><li><a href="#environment">Environment</a></li><ul><li><a href="#path">path</a></li><li><a href="#packagejson-vars">package.json vars</a></li><li><a href="#current-lifecycle-event">current lifecycle event</a></li></ul><li><a href="#examples">Examples</a></li><li><a href="#exiting">Exiting</a></li><li><a href="#best-practices">Best Practices</a></li><li><a href="#see-also">See Also</a></li></ul></div>
145145
</section>
146146

147147
<div id="_content"><h3 id="description">Description</h3>
@@ -367,30 +367,7 @@ <h4 id="packagejson-vars">package.json vars</h4>
367367
<code>npm_package_version</code> set to “1.2.5”. You can access these variables
368368
in your code with <code>process.env.npm_package_name</code> and
369369
<code>process.env.npm_package_version</code>, and so on for other fields.</p>
370-
<h4 id="configuration">configuration</h4>
371-
<p>Configuration parameters are put in the environment with the
372-
<code>npm_config_</code> prefix. For instance, you can view the effective <code>root</code>
373-
config by checking the <code>npm_config_root</code> environment variable.</p>
374-
<h4 id="special-packagejson-config-object">Special: package.json “config” object</h4>
375-
<p>The package.json “config” keys are overwritten in the environment if
376-
there is a config param of <code>&lt;name&gt;[@&lt;version&gt;]:&lt;key&gt;</code>. For example,
377-
if the package.json has this:</p>
378-
<pre lang="json"><code>{
379-
"name" : "foo",
380-
"config" : {
381-
"port" : "8080"
382-
},
383-
"scripts" : {
384-
"start" : "node server.js"
385-
}
386-
}
387-
</code></pre>
388-
<p>and the server.js is this:</p>
389-
<pre lang="javascript"><code>http.createServer(...).listen(process.env.npm_package_config_port)
390-
</code></pre>
391-
<p>then the user could change the behavior by doing:</p>
392-
<pre lang="bash"><code> npm config set foo:port 80
393-
</code></pre>
370+
<p>See <a href="../using-npm/package-json.html"><code>package-json.md</code></a> for more on package configs.</p>
394371
<h4 id="current-lifecycle-event">current lifecycle event</h4>
395372
<p>Lastly, the <code>npm_lifecycle_event</code> environment variable is set to
396373
whichever stage of the cycle is being executed. So, you could have a
@@ -434,15 +411,6 @@ <h3 id="exiting">Exiting</h3>
434411
<p>Note that these script files don’t have to be nodejs or even
435412
javascript programs. They just have to be some kind of executable
436413
file.</p>
437-
<h3 id="hook-scripts">Hook Scripts</h3>
438-
<p>If you want to run a specific script at a specific lifecycle event for
439-
ALL packages, then you can use a hook script.</p>
440-
<p>Place an executable file at <code>node_modules/.hooks/{eventname}</code>, and
441-
it’ll get run for all packages when they are going through that point
442-
in the package lifecycle for any packages installed in that root.</p>
443-
<p>Hook scripts are run exactly the same way as package.json scripts.
444-
That is, they are in a separate child process, with the env described
445-
above.</p>
446414
<h3 id="best-practices">Best Practices</h3>
447415
<ul>
448416
<li>Don’t exit with a non-zero error code unless you <em>really</em> mean it.

Diff for: deps/npm/lib/deprecate.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ class Deprecate extends BaseCommand {
4949
}
5050

5151
async deprecate ([pkg, msg]) {
52-
if (!pkg || !msg)
52+
// msg == null becase '' is a valid value, it indicates undeprecate
53+
if (!pkg || msg == null)
5354
throw this.usageError()
5455

5556
// fetch the data and make sure it exists.

Diff for: deps/npm/lib/ping.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Ping extends BaseCommand {
2727
const start = Date.now()
2828
const details = await pingUtil(this.npm.flatOptions)
2929
const time = Date.now() - start
30-
log.notice('PONG', `${time / 1000}ms`)
30+
log.notice('PONG', `${time}ms`)
3131
if (this.npm.config.get('json')) {
3232
this.npm.output(JSON.stringify({
3333
registry: this.npm.config.get('registry'),

Diff for: deps/npm/lib/utils/exit-handler.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ process.on('exit', code => {
5858
if (!code)
5959
log.info('ok')
6060
else {
61+
log.verbose('code', code)
6162
if (!exitHandlerCalled) {
6263
log.error('', 'Exit handler never called!')
6364
console.error('')
@@ -66,7 +67,6 @@ process.on('exit', code => {
6667
// TODO this doesn't have an npm.config.loaded guard
6768
writeLogFile()
6869
}
69-
log.verbose('code', code)
7070
}
7171
// In timing mode we always write the log file
7272
if (npm.config && npm.config.loaded && npm.config.get('timing') && !wroteLogFile)
@@ -107,8 +107,6 @@ const exit = (code, noLog) => {
107107
// background at this point, and this makes sure anything left dangling
108108
// for whatever reason gets thrown away, instead of leaving the CLI open
109109
process.stdout.write('', () => {
110-
// `|| process.exitCode` supports a single use case, where we set the exit
111-
// code to 1 if npm is called with no arguments
112110
process.exit(code)
113111
})
114112
}

Diff for: deps/npm/man/man1/npm-access.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-ACCESS" "1" "June 2021" "" ""
1+
.TH "NPM\-ACCESS" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-access\fR \- Set access level on published packages
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-adduser.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-ADDUSER" "1" "June 2021" "" ""
1+
.TH "NPM\-ADDUSER" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-adduser\fR \- Add a registry user account
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-audit.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-AUDIT" "1" "June 2021" "" ""
1+
.TH "NPM\-AUDIT" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-audit\fR \- Run a security audit
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-bin.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-BIN" "1" "June 2021" "" ""
1+
.TH "NPM\-BIN" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-bin\fR \- Display npm bin folder
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-bugs.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-BUGS" "1" "June 2021" "" ""
1+
.TH "NPM\-BUGS" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-bugs\fR \- Report bugs for a package in a web browser
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-cache.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-CACHE" "1" "June 2021" "" ""
1+
.TH "NPM\-CACHE" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-cache\fR \- Manipulates packages cache
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-ci.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-CI" "1" "June 2021" "" ""
1+
.TH "NPM\-CI" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-ci\fR \- Install a project with a clean slate
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-completion.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-COMPLETION" "1" "June 2021" "" ""
1+
.TH "NPM\-COMPLETION" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-completion\fR \- Tab Completion for npm
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-config.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-CONFIG" "1" "June 2021" "" ""
1+
.TH "NPM\-CONFIG" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-config\fR \- Manage the npm configuration files
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-dedupe.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-DEDUPE" "1" "June 2021" "" ""
1+
.TH "NPM\-DEDUPE" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-dedupe\fR \- Reduce duplication in the package tree
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-deprecate.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-DEPRECATE" "1" "June 2021" "" ""
1+
.TH "NPM\-DEPRECATE" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-deprecate\fR \- Deprecate a version of a package
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-diff.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-DIFF" "1" "June 2021" "" ""
1+
.TH "NPM\-DIFF" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-diff\fR \- The registry diff command
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-dist-tag.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-DIST\-TAG" "1" "June 2021" "" ""
1+
.TH "NPM\-DIST\-TAG" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-dist-tag\fR \- Modify package distribution tags
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-docs.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-DOCS" "1" "June 2021" "" ""
1+
.TH "NPM\-DOCS" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-docs\fR \- Open documentation for a package in a web browser
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-doctor.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-DOCTOR" "1" "June 2021" "" ""
1+
.TH "NPM\-DOCTOR" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-doctor\fR \- Check your npm environment
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-edit.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-EDIT" "1" "June 2021" "" ""
1+
.TH "NPM\-EDIT" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-edit\fR \- Edit an installed package
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-exec.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-EXEC" "1" "June 2021" "" ""
1+
.TH "NPM\-EXEC" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-exec\fR \- Run a command from a local or remote npm package
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-explain.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-EXPLAIN" "1" "June 2021" "" ""
1+
.TH "NPM\-EXPLAIN" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-explain\fR \- Explain installed packages
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-explore.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-EXPLORE" "1" "June 2021" "" ""
1+
.TH "NPM\-EXPLORE" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-explore\fR \- Browse an installed package
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-find-dupes.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-FIND\-DUPES" "1" "June 2021" "" ""
1+
.TH "NPM\-FIND\-DUPES" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-find-dupes\fR \- Find duplication in the package tree
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-fund.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-FUND" "1" "June 2021" "" ""
1+
.TH "NPM\-FUND" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-fund\fR \- Retrieve funding information
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-help-search.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-HELP\-SEARCH" "1" "June 2021" "" ""
1+
.TH "NPM\-HELP\-SEARCH" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-help-search\fR \- Search npm help documentation
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-help.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-HELP" "1" "June 2021" "" ""
1+
.TH "NPM\-HELP" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-help\fR \- Get help on npm
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-hook.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-HOOK" "1" "June 2021" "" ""
1+
.TH "NPM\-HOOK" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-hook\fR \- Manage registry hooks
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-init.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-INIT" "1" "June 2021" "" ""
1+
.TH "NPM\-INIT" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-init\fR \- Create a package\.json file
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-install-ci-test.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-INSTALL\-CI\-TEST" "1" "June 2021" "" ""
1+
.TH "NPM\-INSTALL\-CI\-TEST" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-install-ci-test\fR \- Install a project with a clean slate and run tests
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-install-test.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-INSTALL\-TEST" "1" "June 2021" "" ""
1+
.TH "NPM\-INSTALL\-TEST" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-install-test\fR \- Install package(s) and run tests
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-install.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-INSTALL" "1" "June 2021" "" ""
1+
.TH "NPM\-INSTALL" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-install\fR \- Install a package
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-link.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-LINK" "1" "June 2021" "" ""
1+
.TH "NPM\-LINK" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-link\fR \- Symlink a package folder
44
.SS Synopsis

Diff for: deps/npm/man/man1/npm-logout.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-LOGOUT" "1" "June 2021" "" ""
1+
.TH "NPM\-LOGOUT" "1" "July 2021" "" ""
22
.SH "NAME"
33
\fBnpm-logout\fR \- Log out of the registry
44
.SS Synopsis

0 commit comments

Comments
 (0)