Skip to content

Commit ccacf99

Browse files
npm-robotsxa
authored andcommitted
deps: upgrade npm to 8.5.2
PR-URL: #42122 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Mestery <[email protected]> Reviewed-By: Danielle Adams <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
1 parent 3fc3f52 commit ccacf99

File tree

421 files changed

+3967
-4906
lines changed

Some content is hidden

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

421 files changed

+3967
-4906
lines changed

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

+9-3
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,27 @@ description: Set access level on published packages
66

77
### Synopsis
88

9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/access.js -->
12+
913
```bash
1014
npm access public [<package>]
1115
npm access restricted [<package>]
12-
1316
npm access grant <read-only|read-write> <scope:team> [<package>]
1417
npm access revoke <scope:team> [<package>]
15-
1618
npm access 2fa-required [<package>]
1719
npm access 2fa-not-required [<package>]
18-
1920
npm access ls-packages [<user>|<scope>|<scope:team>]
2021
npm access ls-collaborators [<package> [<user>]]
2122
npm access edit [<package>]
2223
```
2324
25+
<!-- automatically generated, do not edit manually -->
26+
<!-- see lib/commands/access.js -->
27+
28+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
29+
2430
### Description
2531
2632
Used to set access controls on private packages.

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

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,21 @@ description: Add a registry user account
66

77
### Synopsis
88

9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/adduser.js -->
12+
913
```bash
10-
npm adduser [--registry=url] [--scope=@orgname] [--auth-type=legacy]
14+
npm adduser
1115

1216
aliases: login, add-user
1317
```
1418

19+
<!-- automatically generated, do not edit manually -->
20+
<!-- see lib/commands/adduser.js -->
21+
22+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
23+
1524
Note: This command is unaware of workspaces.
1625

1726
### Description

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

+10-4
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,19 @@ description: Run a security audit
66

77
### Synopsis
88

9-
```bash
10-
npm audit [--json] [--production] [--audit-level=(low|moderate|high|critical)]
11-
npm audit fix [--force|--package-lock-only|--dry-run|--production|--only=(dev|prod)]
9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/audit.js -->
1212

13-
common options: [--production] [--only=(dev|prod)]
13+
```bash
14+
npm audit [fix]
1415
```
1516

17+
<!-- automatically generated, do not edit manually -->
18+
<!-- see lib/commands/audit.js -->
19+
20+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
21+
1622
### Description
1723

1824
The audit command submits a description of the dependencies configured in

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

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,19 @@ description: Display npm bin folder
66

77
### Synopsis
88

9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/bin.js -->
12+
913
```bash
10-
npm bin [-g|--global]
14+
npm bin
1115
```
1216

17+
<!-- automatically generated, do not edit manually -->
18+
<!-- see lib/commands/bin.js -->
19+
20+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
21+
1322
Note: This command is unaware of workspaces.
1423

1524
### Description

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

+11-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,21 @@ description: Report bugs for a package in a web browser
66

77
### Synopsis
88

9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/bugs.js -->
12+
913
```bash
10-
npm bugs [<pkgname> [<pkgname> ...]]
14+
npm bugs [<pkgname>]
1115

12-
aliases: issues
16+
alias: issues
1317
```
1418

19+
<!-- automatically generated, do not edit manually -->
20+
<!-- see lib/commands/bugs.js -->
21+
22+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
23+
1524
### Description
1625

1726
This command tries to guess at the likely location of a package's bug

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

+16-8
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,26 @@ description: Manipulates packages cache
66

77
### Synopsis
88

9-
```bash
10-
npm cache add <tarball file>...
11-
npm cache add <folder>...
12-
npm cache add <tarball url>...
13-
npm cache add <name>@<version>...
14-
15-
npm cache clean
16-
aliases: npm cache clear, npm cache rm
9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/cache.js -->
1712

13+
```bash
14+
npm cache add <tarball file>
15+
npm cache add <folder>
16+
npm cache add <tarball url>
17+
npm cache add <git url>
18+
npm cache add <name>@<version>
19+
npm cache clean [<key>]
20+
npm cache ls [<name>@<version>]
1821
npm cache verify
1922
```
2023

24+
<!-- automatically generated, do not edit manually -->
25+
<!-- see lib/commands/cache.js -->
26+
27+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
28+
2129
Note: This command is unaware of workspaces.
2230

2331
### Description

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

+11
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,21 @@ description: Install a project with a clean slate
66

77
### Synopsis
88

9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/ci.js -->
12+
913
```bash
1014
npm ci
15+
16+
aliases: clean-install, ic, install-clean, isntall-clean
1117
```
1218

19+
<!-- automatically generated, do not edit manually -->
20+
<!-- see lib/commands/ci.js -->
21+
22+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
23+
1324
### Description
1425

1526
This command is similar to [`npm install`](/commands/npm-install), except

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

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,19 @@ description: Tab Completion for npm
66

77
### Synopsis
88

9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/completion.js -->
12+
913
```bash
10-
source <(npm completion)
14+
npm completion
1115
```
1216

17+
<!-- automatically generated, do not edit manually -->
18+
<!-- see lib/commands/completion.js -->
19+
20+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
21+
1322
Note: This command is unaware of workspaces.
1423

1524
### Description

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

+9-2
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,25 @@ description: Manage the npm configuration files
66

77
### Synopsis
88

9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/config.js -->
12+
913
```bash
1014
npm config set <key>=<value> [<key>=<value> ...]
1115
npm config get [<key> [<key> ...]]
1216
npm config delete <key> [<key> ...]
1317
npm config list [--json]
1418
npm config edit
15-
npm set <key>=<value> [<key>=<value> ...]
16-
npm get [<key> [<key> ...]]
1719

1820
alias: c
1921
```
2022
23+
<!-- automatically generated, do not edit manually -->
24+
<!-- see lib/commands/config.js -->
25+
26+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
27+
2128
Note: This command is unaware of workspaces.
2229
2330
### Description

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

+28-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,21 @@ description: Reduce duplication in the package tree
66

77
### Synopsis
88

9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/dedupe.js -->
12+
913
```bash
1014
npm dedupe
11-
npm ddp
1215

13-
aliases: ddp
16+
alias: ddp
1417
```
1518

19+
<!-- automatically generated, do not edit manually -->
20+
<!-- see lib/commands/dedupe.js -->
21+
22+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
23+
1624
### Description
1725

1826
Searches the local package tree and attempts to simplify the overall
@@ -145,6 +153,24 @@ When package package-locks are disabled, automatic pruning of extraneous
145153
modules will also be disabled. To remove extraneous modules with
146154
package-locks disabled use `npm prune`.
147155
156+
This configuration does not affect `npm ci`.
157+
158+
<!-- automatically generated, do not edit manually -->
159+
<!-- see lib/utils/config/definitions.js -->
160+
161+
#### `save`
162+
163+
* Default: `true` unless when using `npm update` or `npm dedupe` where it
164+
defaults to `false`
165+
* Type: Boolean
166+
167+
Save installed packages to a `package.json` file as dependencies.
168+
169+
When used with the `npm rm` command, removes the dependency from
170+
`package.json`.
171+
172+
Will also prevent writing to `package-lock.json` if set to `false`.
173+
148174
<!-- automatically generated, do not edit manually -->
149175
<!-- see lib/utils/config/definitions.js -->
150176

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

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,19 @@ description: Deprecate a version of a package
66

77
### Synopsis
88

9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/deprecate.js -->
12+
913
```bash
10-
npm deprecate <pkg>[@<version range>] <message>
14+
npm deprecate <pkg>[@<version>] <message>
1115
```
1216

17+
<!-- automatically generated, do not edit manually -->
18+
<!-- see lib/commands/deprecate.js -->
19+
20+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
21+
1322
Note: This command is unaware of workspaces.
1423

1524
### Description

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

+9-4
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,19 @@ description: The registry diff command
66

77
### Synopsis
88

9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/diff.js -->
12+
913
```bash
1014
npm diff [...<paths>]
11-
npm diff --diff=<pkg-name> [...<paths>]
12-
npm diff --diff=<version-a> [--diff=<version-b>] [...<paths>]
13-
npm diff --diff=<spec-a> [--diff=<spec-b>] [...<paths>]
14-
npm diff [--diff-ignore-all-space] [--diff-name-only] [...<paths>]
1515
```
1616

17+
<!-- automatically generated, do not edit manually -->
18+
<!-- see lib/commands/diff.js -->
19+
20+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
21+
1722
### Description
1823

1924
Similar to its `git diff` counterpart, this command will print diff patches

deps/npm/docs/content/commands/npm-dist-tag.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,23 @@ description: Modify package distribution tags
66

77
### Synopsis
88

9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/dist-tag.js -->
12+
913
```bash
1014
npm dist-tag add <pkg>@<version> [<tag>]
1115
npm dist-tag rm <pkg> <tag>
1216
npm dist-tag ls [<pkg>]
1317

14-
aliases: dist-tags
18+
alias: dist-tags
1519
```
1620

21+
<!-- automatically generated, do not edit manually -->
22+
<!-- see lib/commands/dist-tag.js -->
23+
24+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
25+
1726
### Description
1827

1928
Add, remove, and enumerate distribution tags on a package:

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

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,21 @@ description: Open documentation for a package in a web browser
66

77
### Synopsis
88

9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/docs.js -->
12+
913
```bash
1014
npm docs [<pkgname> [<pkgname> ...]]
1115

12-
aliases: home
16+
alias: home
1317
```
1418
19+
<!-- automatically generated, do not edit manually -->
20+
<!-- see lib/commands/docs.js -->
21+
22+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
23+
1524
### Description
1625
1726
This command tries to guess at the likely location of a package's

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

+9
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,19 @@ description: Check your npm environment
66

77
### Synopsis
88

9+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10+
<!-- automatically generated, do not edit manually -->
11+
<!-- see lib/commands/doctor.js -->
12+
913
```bash
1014
npm doctor
1115
```
1216

17+
<!-- automatically generated, do not edit manually -->
18+
<!-- see lib/commands/doctor.js -->
19+
20+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
21+
1322
Note: This command is unaware of workspaces.
1423

1524
### Description

0 commit comments

Comments
 (0)