Skip to content

Commit bbe67c4

Browse files
npm-cli-botdanielleadams
authored andcommitted
deps: upgrade npm to 8.19.3
PR-URL: #45322 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent 398ca24 commit bbe67c4

File tree

292 files changed

+6659
-23915
lines changed

Some content is hidden

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

292 files changed

+6659
-23915
lines changed

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

-20
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ 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-
139
```bash
1410
npm access public [<package>]
1511
npm access restricted [<package>]
@@ -22,11 +18,6 @@ npm access ls-collaborators [<package> [<user>]]
2218
npm access edit [<package>]
2319
```
2420
25-
<!-- automatically generated, do not edit manually -->
26-
<!-- see lib/commands/access.js -->
27-
28-
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
29-
3021
### Description
3122
3223
Used to set access controls on private packages.
@@ -88,19 +79,13 @@ Management of teams and team memberships is done with the `npm team` command.
8879
8980
### Configuration
9081
91-
<!-- AUTOGENERATED CONFIG DESCRIPTIONS START -->
92-
<!-- automatically generated, do not edit manually -->
93-
<!-- see lib/utils/config/definitions.js -->
9482
#### `registry`
9583
9684
* Default: "https://registry.npmjs.org/"
9785
* Type: URL
9886
9987
The base URL of the npm registry.
10088
101-
<!-- automatically generated, do not edit manually -->
102-
<!-- see lib/utils/config/definitions.js -->
103-
10489
#### `otp`
10590
10691
* Default: null
@@ -112,11 +97,6 @@ when publishing or changing package permissions with `npm access`.
11297
If not set, and a registry response fails with a challenge for a one-time
11398
password, npm will prompt on the command line for one.
11499
115-
<!-- automatically generated, do not edit manually -->
116-
<!-- see lib/utils/config/definitions.js -->
117-
118-
<!-- AUTOGENERATED CONFIG DESCRIPTIONS END -->
119-
120100
### See Also
121101
122102
* [`libnpmaccess`](https://npm.im/libnpmaccess)

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

-23
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,12 @@ 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-
139
```bash
1410
npm adduser
1511

1612
aliases: login, add-user
1713
```
1814

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

2617
### Description
@@ -44,19 +35,13 @@ your existing record.
4435

4536
### Configuration
4637

47-
<!-- AUTOGENERATED CONFIG DESCRIPTIONS START -->
48-
<!-- automatically generated, do not edit manually -->
49-
<!-- see lib/utils/config/definitions.js -->
5038
#### `registry`
5139

5240
* Default: "https://registry.npmjs.org/"
5341
* Type: URL
5442

5543
The base URL of the npm registry.
5644

57-
<!-- automatically generated, do not edit manually -->
58-
<!-- see lib/utils/config/definitions.js -->
59-
6045
#### `scope`
6146

6247
* Default: the scope of the current project, if any, or ""
@@ -87,9 +72,6 @@ npm init --scope=@foo --yes
8772
```
8873

8974

90-
<!-- automatically generated, do not edit manually -->
91-
<!-- see lib/utils/config/definitions.js -->
92-
9375
#### `auth-type`
9476

9577
* Default: "legacy"
@@ -100,11 +82,6 @@ removed in a future version.
10082

10183
What authentication strategy to use with `login`.
10284

103-
<!-- automatically generated, do not edit manually -->
104-
<!-- see lib/utils/config/definitions.js -->
105-
106-
<!-- AUTOGENERATED CONFIG DESCRIPTIONS END -->
107-
10885
### See Also
10986

11087
* [npm registry](/using-npm/registry)

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

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

77
### Synopsis
88

9-
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
10-
<!-- automatically generated, do not edit manually -->
11-
<!-- see lib/commands/audit.js -->
12-
139
```bash
1410
npm audit [fix|signatures]
1511
```
1612

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

2415
The audit command submits a description of the dependencies configured in
@@ -247,9 +238,6 @@ $ npm audit --audit-level=moderate
247238

248239
### Configuration
249240

250-
<!-- AUTOGENERATED CONFIG DESCRIPTIONS START -->
251-
<!-- automatically generated, do not edit manually -->
252-
<!-- see lib/utils/config/definitions.js -->
253241
#### `audit-level`
254242

255243
* Default: null
@@ -258,9 +246,6 @@ $ npm audit --audit-level=moderate
258246
The minimum level of vulnerability for `npm audit` to exit with a non-zero
259247
exit code.
260248

261-
<!-- automatically generated, do not edit manually -->
262-
<!-- see lib/utils/config/definitions.js -->
263-
264249
#### `dry-run`
265250

266251
* Default: false
@@ -274,9 +259,6 @@ commands that modify your local installation, eg, `install`, `update`,
274259
Note: This is NOT honored by other network related commands, eg `dist-tags`,
275260
`owner`, etc.
276261

277-
<!-- automatically generated, do not edit manually -->
278-
<!-- see lib/utils/config/definitions.js -->
279-
280262
#### `force`
281263

282264
* Default: false
@@ -303,9 +285,6 @@ mistakes, unnecessary performance degradation, and malicious input.
303285
If you don't have a clear idea of what you want to do, it is strongly
304286
recommended that you do not use this option!
305287

306-
<!-- automatically generated, do not edit manually -->
307-
<!-- see lib/utils/config/definitions.js -->
308-
309288
#### `json`
310289

311290
* Default: false
@@ -318,9 +297,6 @@ Whether or not to output JSON data, rather than the normal output.
318297

319298
Not supported by all npm commands.
320299

321-
<!-- automatically generated, do not edit manually -->
322-
<!-- see lib/utils/config/definitions.js -->
323-
324300
#### `package-lock-only`
325301

326302
* Default: false
@@ -335,9 +311,6 @@ instead of checking `node_modules` and downloading dependencies.
335311
For `list` this means the output will be based on the tree described by the
336312
`package-lock.json`, rather than the contents of `node_modules`.
337313

338-
<!-- automatically generated, do not edit manually -->
339-
<!-- see lib/utils/config/definitions.js -->
340-
341314
#### `omit`
342315

343316
* Default: 'dev' if the `NODE_ENV` environment variable is set to
@@ -356,9 +329,6 @@ it will be included.
356329
If the resulting omit list includes `'dev'`, then the `NODE_ENV` environment
357330
variable will be set to `'production'` for all lifecycle scripts.
358331

359-
<!-- automatically generated, do not edit manually -->
360-
<!-- see lib/utils/config/definitions.js -->
361-
362332
#### `foreground-scripts`
363333

364334
* Default: false
@@ -371,9 +341,6 @@ input, output, and error with the main npm process.
371341
Note that this will generally make installs run slower, and be much noisier,
372342
but can be useful for debugging.
373343

374-
<!-- automatically generated, do not edit manually -->
375-
<!-- see lib/utils/config/definitions.js -->
376-
377344
#### `ignore-scripts`
378345

379346
* Default: false
@@ -386,9 +353,6 @@ Note that commands explicitly intended to run a particular script, such as
386353
will still run their intended script if `ignore-scripts` is set, but they
387354
will *not* run any pre- or post-scripts.
388355

389-
<!-- automatically generated, do not edit manually -->
390-
<!-- see lib/utils/config/definitions.js -->
391-
392356
#### `workspace`
393357

394358
* Default:
@@ -411,9 +375,6 @@ brand new workspace within the project.
411375

412376
This value is not exported to the environment for child processes.
413377

414-
<!-- automatically generated, do not edit manually -->
415-
<!-- see lib/utils/config/definitions.js -->
416-
417378
#### `workspaces`
418379

419380
* Default: null
@@ -432,9 +393,6 @@ _unless_ one or more workspaces are specified in the `workspace` config.
432393

433394
This value is not exported to the environment for child processes.
434395

435-
<!-- automatically generated, do not edit manually -->
436-
<!-- see lib/utils/config/definitions.js -->
437-
438396
#### `include-workspace-root`
439397

440398
* Default: false
@@ -448,9 +406,6 @@ the specified workspaces, and not on the root project.
448406

449407
This value is not exported to the environment for child processes.
450408

451-
<!-- automatically generated, do not edit manually -->
452-
<!-- see lib/utils/config/definitions.js -->
453-
454409
#### `install-links`
455410

456411
* Default: false
@@ -460,11 +415,6 @@ When set file: protocol dependencies that exist outside of the project root
460415
will be packed and installed as regular dependencies instead of creating a
461416
symlink. This option has no effect on workspaces.
462417

463-
<!-- automatically generated, do not edit manually -->
464-
<!-- see lib/utils/config/definitions.js -->
465-
466-
<!-- AUTOGENERATED CONFIG DESCRIPTIONS END -->
467-
468418
### See Also
469419

470420
* [npm install](/commands/npm-install)

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

-17
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,10 @@ 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-
139
```bash
1410
npm bin
1511
```
1612

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

2415
### Description
@@ -27,9 +18,6 @@ Print the folder where npm will install executables.
2718

2819
### Configuration
2920

30-
<!-- AUTOGENERATED CONFIG DESCRIPTIONS START -->
31-
<!-- automatically generated, do not edit manually -->
32-
<!-- see lib/utils/config/definitions.js -->
3321
#### `global`
3422

3523
* Default: false
@@ -44,11 +32,6 @@ folder instead of the current working directory. See
4432
* bin files are linked to `{prefix}/bin`
4533
* man pages are linked to `{prefix}/share/man`
4634

47-
<!-- automatically generated, do not edit manually -->
48-
<!-- see lib/utils/config/definitions.js -->
49-
50-
<!-- AUTOGENERATED CONFIG DESCRIPTIONS END -->
51-
5235
### See Also
5336

5437
* [npm prefix](/commands/npm-prefix)

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

-29
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,12 @@ 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-
139
```bash
1410
npm bugs [<pkgname> [<pkgname> ...]]
1511

1612
alias: issues
1713
```
1814
19-
<!-- automatically generated, do not edit manually -->
20-
<!-- see lib/commands/bugs.js -->
21-
22-
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
23-
2415
### Description
2516
2617
This command tries to guess at the likely location of a package's bug
@@ -30,9 +21,6 @@ will search for a `package.json` in the current folder and use the `name` proper
3021
3122
### Configuration
3223
33-
<!-- AUTOGENERATED CONFIG DESCRIPTIONS START -->
34-
<!-- automatically generated, do not edit manually -->
35-
<!-- see lib/utils/config/definitions.js -->
3624
#### `browser`
3725
3826
* Default: OS X: `"open"`, Windows: `"start"`, Others: `"xdg-open"`
@@ -45,19 +33,13 @@ terminal.
4533
4634
Set to `true` to use default system URL opener.
4735
48-
<!-- automatically generated, do not edit manually -->
49-
<!-- see lib/utils/config/definitions.js -->
50-
5136
#### `registry`
5237
5338
* Default: "https://registry.npmjs.org/"
5439
* Type: URL
5540
5641
The base URL of the npm registry.
5742
58-
<!-- automatically generated, do not edit manually -->
59-
<!-- see lib/utils/config/definitions.js -->
60-
6143
#### `workspace`
6244
6345
* Default:
@@ -80,9 +62,6 @@ brand new workspace within the project.
8062
8163
This value is not exported to the environment for child processes.
8264
83-
<!-- automatically generated, do not edit manually -->
84-
<!-- see lib/utils/config/definitions.js -->
85-
8665
#### `workspaces`
8766
8867
* Default: null
@@ -101,9 +80,6 @@ _unless_ one or more workspaces are specified in the `workspace` config.
10180
10281
This value is not exported to the environment for child processes.
10382
104-
<!-- automatically generated, do not edit manually -->
105-
<!-- see lib/utils/config/definitions.js -->
106-
10783
#### `include-workspace-root`
10884
10985
* Default: false
@@ -117,11 +93,6 @@ the specified workspaces, and not on the root project.
11793
11894
This value is not exported to the environment for child processes.
11995
120-
<!-- automatically generated, do not edit manually -->
121-
<!-- see lib/utils/config/definitions.js -->
122-
123-
<!-- AUTOGENERATED CONFIG DESCRIPTIONS END -->
124-
12596
### See Also
12697
12798
* [npm docs](/commands/npm-docs)

0 commit comments

Comments
 (0)