Skip to content

Commit 0df47d5

Browse files
npm-robotBethGriggs
authored andcommitted
deps: upgrade npm to 7.23.0
PR-URL: #40055 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Beth Griggs <[email protected]>
1 parent 8aad81d commit 0df47d5

File tree

203 files changed

+3991
-1957
lines changed

Some content is hidden

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

203 files changed

+3991
-1957
lines changed

deps/npm/docs/content/commands/npm-deprecate.md

Lines changed: 1 addition & 1 deletion

deps/npm/docs/content/using-npm/workspaces.md

Lines changed: 10 additions & 0 deletions

deps/npm/docs/output/commands/npm-deprecate.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ <h3 id="see-also">See Also</h3>
194194
<li><a href="../commands/npm-publish.html">npm publish</a></li>
195195
<li><a href="../using-npm/registry.html">npm registry</a></li>
196196
<li><a href="../commands/npm-owner.html">npm owner</a></li>
197-
<li><a href="../commands/npm-adduser.html">npm owner</a></li>
197+
<li><a href="../commands/npm-adduser.html">npm adduser</a></li>
198198
</ul>
199199
</div>
200200

deps/npm/docs/output/commands/npm-ls.html

Lines changed: 1 addition & 1 deletion
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>npm@7.21.1 /path/to/npm
162+
<pre lang="bash"><code>npm@7.23.0 /path/to/npm
163163
164164
165165
</code></pre>

deps/npm/docs/output/commands/npm.html

Lines changed: 1 addition & 1 deletion
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.21.1</p>
151+
<p>7.23.0</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

deps/npm/docs/output/using-npm/workspaces.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ <h1 id="workspaces">workspaces</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="#defining-workspaces">Defining workspaces</a></li><li><a href="#getting-started-with-workspaces">Getting started with workspaces</a></li><li><a href="#adding-dependencies-to-a-workspace">Adding dependencies to a workspace</a></li><li><a href="#using-workspaces">Using workspaces</a></li><li><a href="#running-commands-in-the-context-of-workspaces">Running commands in the context of workspaces</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="#defining-workspaces">Defining workspaces</a></li><li><a href="#getting-started-with-workspaces">Getting started with workspaces</a></li><li><a href="#adding-dependencies-to-a-workspace">Adding dependencies to a workspace</a></li><li><a href="#using-workspaces">Using workspaces</a></li><li><a href="#running-commands-in-the-context-of-workspaces">Running commands in the context of workspaces</a></li><li><a href="#ignoring-missing-scripts">Ignoring missing scripts</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>
@@ -264,6 +264,11 @@ <h3 id="running-commands-in-the-context-of-workspaces">Running commands in the c
264264
<pre><code>npm run test --workspaces
265265
</code></pre>
266266
<p>Will run the <code>test</code> script in both <code>./packages/a</code> and <code>./packages/b</code>.</p>
267+
<h3 id="ignoring-missing-scripts">Ignoring missing scripts</h3>
268+
<p>It is not required for all of the workspaces to implement scripts run with the <code>npm run</code> command.</p>
269+
<p>By running the command with the <code>--if-present</code> flag, npm will ignore workspaces missing target script.</p>
270+
<pre><code>npm run test --workspaces --if-present
271+
</code></pre>
267272
<h3 id="see-also">See also</h3>
268273
<ul>
269274
<li><a href="../commands/npm-install.html">npm install</a></li>

deps/npm/lib/install.js

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ const log = require('npmlog')
88
const { resolve, join } = require('path')
99
const Arborist = require('@npmcli/arborist')
1010
const runScript = require('@npmcli/run-script')
11+
const pacote = require('pacote')
12+
const checks = require('npm-install-checks')
1113

1214
const ArboristWorkspaceCmd = require('./workspaces/arborist-cmd.js')
1315
class Install extends ArboristWorkspaceCmd {
@@ -126,6 +128,23 @@ class Install extends ArboristWorkspaceCmd {
126128
const ignoreScripts = this.npm.config.get('ignore-scripts')
127129
const isGlobalInstall = this.npm.config.get('global')
128130
const where = isGlobalInstall ? globalTop : this.npm.prefix
131+
const forced = this.npm.config.get('force')
132+
const isDev = this.npm.config.get('dev')
133+
const scriptShell = this.npm.config.get('script-shell') || undefined
134+
135+
// be very strict about engines when trying to update npm itself
136+
const npmInstall = args.find(arg => arg.startsWith('npm@') || arg === 'npm')
137+
if (isGlobalInstall && npmInstall) {
138+
const npmManifest = await pacote.manifest(npmInstall)
139+
try {
140+
checks.checkEngine(npmManifest, npmManifest.version, process.version)
141+
} catch (e) {
142+
if (forced)
143+
this.npm.log.warn('install', `Forcing global npm install with incompatible version ${npmManifest.version} into node ${process.version}`)
144+
else
145+
throw e
146+
}
147+
}
129148

130149
// don't try to install the prefix into itself
131150
args = args.filter(a => resolve(a) !== this.npm.prefix)
@@ -135,7 +154,7 @@ class Install extends ArboristWorkspaceCmd {
135154
args = ['.']
136155

137156
// TODO: Add warnings for other deprecated flags? or remove this one?
138-
if (this.npm.config.get('dev'))
157+
if (isDev)
139158
log.warn('install', 'Usage of the `--dev` option is deprecated. Use `--include=dev` instead.')
140159

141160
const opts = {
@@ -150,7 +169,6 @@ class Install extends ArboristWorkspaceCmd {
150169
await arb.reify(opts)
151170

152171
if (!args.length && !isGlobalInstall && !ignoreScripts) {
153-
const scriptShell = this.npm.config.get('script-shell') || undefined
154172
const scripts = [
155173
'preinstall',
156174
'install',

deps/npm/lib/utils/error-message.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ module.exports = (er, npm) => {
181181
const pkg = er.pkgid.replace(/(?!^)@.*$/, '')
182182

183183
detail.push(['404', ''])
184-
detail.push(['404', '', "'" + er.pkgid + "' is not in the npm registry."])
184+
detail.push(['404', '', `'${replaceInfo(er.pkgid)}' is not in this registry.`])
185185

186186
const valResult = nameValidator(pkg)
187187

deps/npm/man/man1/npm-access.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-ACCESS" "1" "August 2021" "" ""
1+
.TH "NPM\-ACCESS" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-access\fR \- Set access level on published packages
44
.SS Synopsis

deps/npm/man/man1/npm-adduser.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-ADDUSER" "1" "August 2021" "" ""
1+
.TH "NPM\-ADDUSER" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-adduser\fR \- Add a registry user account
44
.SS Synopsis

deps/npm/man/man1/npm-audit.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-AUDIT" "1" "August 2021" "" ""
1+
.TH "NPM\-AUDIT" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-audit\fR \- Run a security audit
44
.SS Synopsis

deps/npm/man/man1/npm-bin.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-BIN" "1" "August 2021" "" ""
1+
.TH "NPM\-BIN" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-bin\fR \- Display npm bin folder
44
.SS Synopsis

deps/npm/man/man1/npm-bugs.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-BUGS" "1" "August 2021" "" ""
1+
.TH "NPM\-BUGS" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-bugs\fR \- Report bugs for a package in a web browser
44
.SS Synopsis

deps/npm/man/man1/npm-cache.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-CACHE" "1" "August 2021" "" ""
1+
.TH "NPM\-CACHE" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-cache\fR \- Manipulates packages cache
44
.SS Synopsis

deps/npm/man/man1/npm-ci.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-CI" "1" "August 2021" "" ""
1+
.TH "NPM\-CI" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-ci\fR \- Install a project with a clean slate
44
.SS Synopsis

deps/npm/man/man1/npm-completion.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-COMPLETION" "1" "August 2021" "" ""
1+
.TH "NPM\-COMPLETION" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-completion\fR \- Tab Completion for npm
44
.SS Synopsis

deps/npm/man/man1/npm-config.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-CONFIG" "1" "August 2021" "" ""
1+
.TH "NPM\-CONFIG" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-config\fR \- Manage the npm configuration files
44
.SS Synopsis

deps/npm/man/man1/npm-dedupe.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-DEDUPE" "1" "August 2021" "" ""
1+
.TH "NPM\-DEDUPE" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-dedupe\fR \- Reduce duplication in the package tree
44
.SS Synopsis

deps/npm/man/man1/npm-deprecate.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-DEPRECATE" "1" "August 2021" "" ""
1+
.TH "NPM\-DEPRECATE" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-deprecate\fR \- Deprecate a version of a package
44
.SS Synopsis
@@ -86,6 +86,6 @@ npm help registry
8686
.IP \(bu 2
8787
npm help owner
8888
.IP \(bu 2
89-
npm help owner
89+
npm help adduser
9090

9191
.RE

deps/npm/man/man1/npm-diff.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-DIFF" "1" "August 2021" "" ""
1+
.TH "NPM\-DIFF" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-diff\fR \- The registry diff command
44
.SS Synopsis

deps/npm/man/man1/npm-dist-tag.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-DIST\-TAG" "1" "August 2021" "" ""
1+
.TH "NPM\-DIST\-TAG" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-dist-tag\fR \- Modify package distribution tags
44
.SS Synopsis

deps/npm/man/man1/npm-docs.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-DOCS" "1" "August 2021" "" ""
1+
.TH "NPM\-DOCS" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-docs\fR \- Open documentation for a package in a web browser
44
.SS Synopsis

deps/npm/man/man1/npm-doctor.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-DOCTOR" "1" "August 2021" "" ""
1+
.TH "NPM\-DOCTOR" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-doctor\fR \- Check your npm environment
44
.SS Synopsis

deps/npm/man/man1/npm-edit.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-EDIT" "1" "August 2021" "" ""
1+
.TH "NPM\-EDIT" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-edit\fR \- Edit an installed package
44
.SS Synopsis

deps/npm/man/man1/npm-exec.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-EXEC" "1" "August 2021" "" ""
1+
.TH "NPM\-EXEC" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-exec\fR \- Run a command from a local or remote npm package
44
.SS Synopsis

deps/npm/man/man1/npm-explain.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-EXPLAIN" "1" "August 2021" "" ""
1+
.TH "NPM\-EXPLAIN" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-explain\fR \- Explain installed packages
44
.SS Synopsis

deps/npm/man/man1/npm-explore.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-EXPLORE" "1" "August 2021" "" ""
1+
.TH "NPM\-EXPLORE" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-explore\fR \- Browse an installed package
44
.SS Synopsis

deps/npm/man/man1/npm-find-dupes.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-FIND\-DUPES" "1" "August 2021" "" ""
1+
.TH "NPM\-FIND\-DUPES" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-find-dupes\fR \- Find duplication in the package tree
44
.SS Synopsis

deps/npm/man/man1/npm-fund.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-FUND" "1" "August 2021" "" ""
1+
.TH "NPM\-FUND" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-fund\fR \- Retrieve funding information
44
.SS Synopsis

deps/npm/man/man1/npm-help-search.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-HELP\-SEARCH" "1" "August 2021" "" ""
1+
.TH "NPM\-HELP\-SEARCH" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-help-search\fR \- Search npm help documentation
44
.SS Synopsis

deps/npm/man/man1/npm-help.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-HELP" "1" "August 2021" "" ""
1+
.TH "NPM\-HELP" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-help\fR \- Get help on npm
44
.SS Synopsis

deps/npm/man/man1/npm-hook.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-HOOK" "1" "August 2021" "" ""
1+
.TH "NPM\-HOOK" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-hook\fR \- Manage registry hooks
44
.SS Synopsis

deps/npm/man/man1/npm-init.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-INIT" "1" "August 2021" "" ""
1+
.TH "NPM\-INIT" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-init\fR \- Create a package\.json file
44
.SS Synopsis

deps/npm/man/man1/npm-install-ci-test.1

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

deps/npm/man/man1/npm-install-test.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-INSTALL\-TEST" "1" "August 2021" "" ""
1+
.TH "NPM\-INSTALL\-TEST" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-install-test\fR \- Install package(s) and run tests
44
.SS Synopsis

deps/npm/man/man1/npm-install.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-INSTALL" "1" "August 2021" "" ""
1+
.TH "NPM\-INSTALL" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-install\fR \- Install a package
44
.SS Synopsis

deps/npm/man/man1/npm-link.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-LINK" "1" "August 2021" "" ""
1+
.TH "NPM\-LINK" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-link\fR \- Symlink a package folder
44
.SS Synopsis

deps/npm/man/man1/npm-logout.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-LOGOUT" "1" "August 2021" "" ""
1+
.TH "NPM\-LOGOUT" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-logout\fR \- Log out of the registry
44
.SS Synopsis

deps/npm/man/man1/npm-ls.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-LS" "1" "August 2021" "" ""
1+
.TH "NPM\-LS" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-ls\fR \- List installed packages
44
.SS Synopsis
@@ -26,7 +26,7 @@ example, running \fBnpm ls promzard\fP in npm's source tree will show:
2626
.P
2727
.RS 2
2828
.nf
29-
npm@7\.21\.1 /path/to/npm
29+
npm@7\.23\.0 /path/to/npm
3030
└─┬ init\-package\-json@0\.0\.4
3131
└── promzard@0\.1\.5
3232
.fi

deps/npm/man/man1/npm-org.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-ORG" "1" "August 2021" "" ""
1+
.TH "NPM\-ORG" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-org\fR \- Manage orgs
44
.SS Synopsis

deps/npm/man/man1/npm-outdated.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-OUTDATED" "1" "August 2021" "" ""
1+
.TH "NPM\-OUTDATED" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-outdated\fR \- Check for outdated packages
44
.SS Synopsis

deps/npm/man/man1/npm-owner.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-OWNER" "1" "August 2021" "" ""
1+
.TH "NPM\-OWNER" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-owner\fR \- Manage package owners
44
.SS Synopsis

deps/npm/man/man1/npm-pack.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-PACK" "1" "August 2021" "" ""
1+
.TH "NPM\-PACK" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-pack\fR \- Create a tarball from a package
44
.SS Synopsis

deps/npm/man/man1/npm-ping.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-PING" "1" "August 2021" "" ""
1+
.TH "NPM\-PING" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-ping\fR \- Ping npm registry
44
.SS Synopsis

deps/npm/man/man1/npm-pkg.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-PKG" "1" "August 2021" "" ""
1+
.TH "NPM\-PKG" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-pkg\fR \- Manages your package\.json
44
.SS Synopsis

deps/npm/man/man1/npm-prefix.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-PREFIX" "1" "August 2021" "" ""
1+
.TH "NPM\-PREFIX" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-prefix\fR \- Display prefix
44
.SS Synopsis

deps/npm/man/man1/npm-profile.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-PROFILE" "1" "August 2021" "" ""
1+
.TH "NPM\-PROFILE" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-profile\fR \- Change settings on your registry profile
44
.SS Synopsis

deps/npm/man/man1/npm-prune.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-PRUNE" "1" "August 2021" "" ""
1+
.TH "NPM\-PRUNE" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-prune\fR \- Remove extraneous packages
44
.SS Synopsis

deps/npm/man/man1/npm-publish.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-PUBLISH" "1" "August 2021" "" ""
1+
.TH "NPM\-PUBLISH" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-publish\fR \- Publish a package
44
.SS Synopsis

deps/npm/man/man1/npm-rebuild.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-REBUILD" "1" "August 2021" "" ""
1+
.TH "NPM\-REBUILD" "1" "September 2021" "" ""
22
.SH "NAME"
33
\fBnpm-rebuild\fR \- Rebuild a package
44
.SS Synopsis

0 commit comments

Comments
 (0)