Skip to content

Commit f5b8aee

Browse files
npm-robottargos
authored andcommitted
deps: upgrade npm to 8.3.1
PR-URL: #41503 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ruy Adorno <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Darshan Sen <[email protected]>
1 parent abbfed8 commit f5b8aee

File tree

144 files changed

+2113
-755
lines changed

Some content is hidden

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

144 files changed

+2113
-755
lines changed

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

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

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

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

deps/npm/lib/commands/unpublish.js

+24-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,22 @@ const log = require('../utils/log-shim')
99
const otplease = require('../utils/otplease.js')
1010
const getIdentity = require('../utils/get-identity.js')
1111

12+
const LAST_REMAINING_VERSION_ERROR = 'Refusing to delete the last version of the package. ' +
13+
'It will block from republishing a new version for 24 hours.\n' +
14+
'Run with --force to do this.'
15+
1216
const BaseCommand = require('../base-command.js')
1317
class Unpublish extends BaseCommand {
1418
static description = 'Remove a package from the registry'
1519
static name = 'unpublish'
1620
static params = ['dry-run', 'force', 'workspace', 'workspaces']
1721
static usage = ['[<@scope>/]<pkg>[@<version>]']
1822

23+
async getKeysOfVersions (name, opts) {
24+
const json = await npmFetch.json(npa(name).escapedName, opts)
25+
return Object.keys(json.versions)
26+
}
27+
1928
async completion (args) {
2029
const { partialWord, conf } = args
2130

@@ -44,8 +53,7 @@ class Unpublish extends BaseCommand {
4453
return pkgs
4554
}
4655

47-
const json = await npmFetch.json(npa(pkgs[0]).escapedName, opts)
48-
const versions = Object.keys(json.versions)
56+
const versions = await this.getKeysOfVersions(pkgs[0], opts)
4957
if (!versions.length) {
5058
return pkgs
5159
} else {
@@ -97,12 +105,26 @@ class Unpublish extends BaseCommand {
97105
const { name, version, publishConfig } = manifest
98106
const pkgJsonSpec = npa.resolve(name, version)
99107
const optsWithPub = { ...opts, publishConfig }
108+
109+
const versions = await this.getKeysOfVersions(name, optsWithPub)
110+
if (versions.length === 1 && !force) {
111+
throw this.usageError(
112+
LAST_REMAINING_VERSION_ERROR
113+
)
114+
}
115+
100116
if (!dryRun) {
101117
await otplease(opts, opts => libunpub(pkgJsonSpec, optsWithPub))
102118
}
103119
pkgName = name
104120
pkgVersion = version ? `@${version}` : ''
105121
} else {
122+
const versions = await this.getKeysOfVersions(spec.name, opts)
123+
if (versions.length === 1 && !force) {
124+
throw this.usageError(
125+
LAST_REMAINING_VERSION_ERROR
126+
)
127+
}
106128
if (!dryRun) {
107129
await otplease(opts, opts => libunpub(spec, opts))
108130
}

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" "December 2021" "" ""
1+
.TH "NPM\-ACCESS" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-access\fR \- Set access level on published packages
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-ADDUSER" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-adduser\fR \- Add a registry user account
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-AUDIT" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-audit\fR \- Run a security audit
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-BIN" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-bin\fR \- Display npm bin folder
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-BUGS" "1" "January 2022" "" ""
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

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

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" "December 2021" "" ""
1+
.TH "NPM\-CI" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-ci\fR \- Install a project with a clean slate
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-COMPLETION" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-completion\fR \- Tab Completion for npm
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-CONFIG" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-config\fR \- Manage the npm configuration files
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-DEDUPE" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-dedupe\fR \- Reduce duplication in the package tree
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-DEPRECATE" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-deprecate\fR \- Deprecate a version of a package
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-DIFF" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-diff\fR \- The registry diff command
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-DIST\-TAG" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-dist-tag\fR \- Modify package distribution tags
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-DOCS" "1" "January 2022" "" ""
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

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

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" "December 2021" "" ""
1+
.TH "NPM\-EDIT" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-edit\fR \- Edit an installed package
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-EXEC" "1" "January 2022" "" ""
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

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

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" "December 2021" "" ""
1+
.TH "NPM\-EXPLORE" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-explore\fR \- Browse an installed package
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-FIND\-DUPES" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-find-dupes\fR \- Find duplication in the package tree
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-FUND" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-fund\fR \- Retrieve funding information
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-HELP\-SEARCH" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-help-search\fR \- Search npm help documentation
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-HELP" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-help\fR \- Get help on npm
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-HOOK" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-hook\fR \- Manage registry hooks
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-INIT" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-init\fR \- Create a package\.json file
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-INSTALL\-CI\-TEST" "1" "January 2022" "" ""
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

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

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" "December 2021" "" ""
1+
.TH "NPM\-INSTALL" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-install\fR \- Install a package
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-LINK" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-link\fR \- Symlink a package folder
44
.SS Synopsis

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" "December 2021" "" ""
1+
.TH "NPM\-LOGOUT" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-logout\fR \- Log out of the registry
44
.SS Synopsis

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-LS" "1" "December 2021" "" ""
1+
.TH "NPM\-LS" "1" "January 2022" "" ""
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@8\.3\.0 /path/to/npm
29+
npm@8\.3\.1 /path/to/npm
3030
└─┬ init\-package\-json@0\.0\.4
3131
└── promzard@0\.1\.5
3232
.fi

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-ORG" "1" "December 2021" "" ""
1+
.TH "NPM\-ORG" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-org\fR \- Manage orgs
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-OUTDATED" "1" "December 2021" "" ""
1+
.TH "NPM\-OUTDATED" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-outdated\fR \- Check for outdated packages
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-OWNER" "1" "December 2021" "" ""
1+
.TH "NPM\-OWNER" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-owner\fR \- Manage package owners
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-PACK" "1" "December 2021" "" ""
1+
.TH "NPM\-PACK" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-pack\fR \- Create a tarball from a package
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-PING" "1" "December 2021" "" ""
1+
.TH "NPM\-PING" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-ping\fR \- Ping npm registry
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-PKG" "1" "December 2021" "" ""
1+
.TH "NPM\-PKG" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-pkg\fR \- Manages your package\.json
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-PREFIX" "1" "December 2021" "" ""
1+
.TH "NPM\-PREFIX" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-prefix\fR \- Display prefix
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-PROFILE" "1" "December 2021" "" ""
1+
.TH "NPM\-PROFILE" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-profile\fR \- Change settings on your registry profile
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-PRUNE" "1" "December 2021" "" ""
1+
.TH "NPM\-PRUNE" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-prune\fR \- Remove extraneous packages
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-PUBLISH" "1" "December 2021" "" ""
1+
.TH "NPM\-PUBLISH" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-publish\fR \- Publish a package
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-REBUILD" "1" "December 2021" "" ""
1+
.TH "NPM\-REBUILD" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-rebuild\fR \- Rebuild a package
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-REPO" "1" "December 2021" "" ""
1+
.TH "NPM\-REPO" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-repo\fR \- Open package repository page in the browser
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-RESTART" "1" "December 2021" "" ""
1+
.TH "NPM\-RESTART" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-restart\fR \- Restart a package
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-ROOT" "1" "December 2021" "" ""
1+
.TH "NPM\-ROOT" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-root\fR \- Display npm root
44
.SS Synopsis

deps/npm/man/man1/npm-run-script.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-RUN\-SCRIPT" "1" "December 2021" "" ""
1+
.TH "NPM\-RUN\-SCRIPT" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-run-script\fR \- Run arbitrary package scripts
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-SEARCH" "1" "December 2021" "" ""
1+
.TH "NPM\-SEARCH" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-search\fR \- Search for packages
44
.SS Synopsis

deps/npm/man/man1/npm-set-script.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-SET\-SCRIPT" "1" "December 2021" "" ""
1+
.TH "NPM\-SET\-SCRIPT" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-set-script\fR \- Set tasks in the scripts section of package\.json
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-SHRINKWRAP" "1" "December 2021" "" ""
1+
.TH "NPM\-SHRINKWRAP" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-shrinkwrap\fR \- Lock down dependency versions for publication
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-STAR" "1" "December 2021" "" ""
1+
.TH "NPM\-STAR" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-star\fR \- Mark your favorite packages
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-STARS" "1" "December 2021" "" ""
1+
.TH "NPM\-STARS" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-stars\fR \- View packages marked as favorites
44
.SS Synopsis

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "NPM\-START" "1" "December 2021" "" ""
1+
.TH "NPM\-START" "1" "January 2022" "" ""
22
.SH "NAME"
33
\fBnpm-start\fR \- Start a package
44
.SS Synopsis

0 commit comments

Comments
 (0)