Skip to content

Commit 06d7b8e

Browse files
npm-robottargos
authored andcommitted
deps: upgrade npm to 7.20.3
Updates npm from 7.19.1 to 7.20.3. Refs: #39403 PR-URL: #39579 Backport-PR-URL: #39590 Reviewed-By: Myles Borins <[email protected]> Reviewed-By: Beth Griggs <[email protected]>
1 parent 815fbec commit 06d7b8e

File tree

177 files changed

+6469
-1750
lines changed

Some content is hidden

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

177 files changed

+6469
-1750
lines changed

Diff for: deps/npm/docs/content/commands/npm-audit.md

+4
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ mistakes, unnecessary performance degradation, and malicious input.
232232
* Allow unpublishing all versions of a published package.
233233
* Allow conflicting peerDependencies to be installed in the root project.
234234
* Implicitly set `--yes` during `npm init`.
235+
* Allow clobbering existing values in `npm pkg`
235236

236237
If you don't have a clear idea of what you want to do, it is strongly
237238
recommended that you do not use this option!
@@ -243,6 +244,9 @@ recommended that you do not use this option!
243244

244245
Whether or not to output JSON data, rather than the normal output.
245246

247+
* In `npm pkg set` it enables parsing set values with JSON.parse() before
248+
saving them to your `package.json`.
249+
246250
Not supported by all npm commands.
247251

248252
#### `package-lock-only`

Diff for: deps/npm/docs/content/commands/npm-ci.md

+10
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,16 @@ cache:
6969

7070
<!-- AUTOGENERATED CONFIG DESCRIPTIONS START -->
7171
<!-- automatically generated, do not edit manually -->
72+
#### `audit`
73+
74+
* Default: true
75+
* Type: Boolean
76+
77+
When "true" submit audit reports alongside the current npm command to the
78+
default registry and all registries configured for scopes. See the
79+
documentation for [`npm audit`](/commands/npm-audit) for details on what is
80+
submitted.
81+
7282
#### `ignore-scripts`
7383

7484
* Default: false

Diff for: deps/npm/docs/content/commands/npm-config.md

+11
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,9 @@ global config.
104104
105105
Whether or not to output JSON data, rather than the normal output.
106106
107+
* In `npm pkg set` it enables parsing set values with JSON.parse() before
108+
saving them to your `package.json`.
109+
107110
Not supported by all npm commands.
108111
109112
#### `global`
@@ -128,6 +131,14 @@ folder instead of the current working directory. See
128131
129132
The command to run for `npm edit` and `npm config edit`.
130133
134+
#### `location`
135+
136+
* Default: "user" unless `--global` is passed, which will also set this value
137+
to "global"
138+
* Type: "global", "user", or "project"
139+
140+
When passed to `npm config` this refers to which config file to use.
141+
131142
#### `long`
132143
133144
* Default: false

Diff for: deps/npm/docs/content/commands/npm-dedupe.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,10 @@ will *not* run any pre- or post-scripts.
164164
* Default: true
165165
* Type: Boolean
166166
167-
When "true" submit audit reports alongside `npm install` runs to the default
168-
registry and all registries configured for scopes. See the documentation for
169-
[`npm audit`](/commands/npm-audit) for details on what is submitted.
167+
When "true" submit audit reports alongside the current npm command to the
168+
default registry and all registries configured for scopes. See the
169+
documentation for [`npm audit`](/commands/npm-audit) for details on what is
170+
submitted.
170171
171172
#### `bin-links`
172173

Diff for: deps/npm/docs/content/commands/npm-explain.md

+3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ node_modules/nyc/node_modules/find-up
6363

6464
Whether or not to output JSON data, rather than the normal output.
6565

66+
* In `npm pkg set` it enables parsing set values with JSON.parse() before
67+
saving them to your `package.json`.
68+
6669
Not supported by all npm commands.
6770

6871
#### `workspace`

Diff for: deps/npm/docs/content/commands/npm-find-dupes.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,10 @@ will *not* run any pre- or post-scripts.
107107
* Default: true
108108
* Type: Boolean
109109

110-
When "true" submit audit reports alongside `npm install` runs to the default
111-
registry and all registries configured for scopes. See the documentation for
112-
[`npm audit`](/commands/npm-audit) for details on what is submitted.
110+
When "true" submit audit reports alongside the current npm command to the
111+
default registry and all registries configured for scopes. See the
112+
documentation for [`npm audit`](/commands/npm-audit) for details on what is
113+
submitted.
113114

114115
#### `bin-links`
115116

Diff for: deps/npm/docs/content/commands/npm-fund.md

+3
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ [email protected]
7373

7474
Whether or not to output JSON data, rather than the normal output.
7575

76+
* In `npm pkg set` it enables parsing set values with JSON.parse() before
77+
saving them to your `package.json`.
78+
7679
Not supported by all npm commands.
7780

7881
#### `browser`

Diff for: deps/npm/docs/content/commands/npm-init.md

+1
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ mistakes, unnecessary performance degradation, and malicious input.
175175
* Allow unpublishing all versions of a published package.
176176
* Allow conflicting peerDependencies to be installed in the root project.
177177
* Implicitly set `--yes` during `npm init`.
178+
* Allow clobbering existing values in `npm pkg`
178179

179180
If you don't have a clear idea of what you want to do, it is strongly
180181
recommended that you do not use this option!

Diff for: deps/npm/docs/content/commands/npm-install-ci-test.md

+10
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,16 @@ This command runs `npm ci` followed immediately by `npm test`.
2020

2121
<!-- AUTOGENERATED CONFIG DESCRIPTIONS START -->
2222
<!-- automatically generated, do not edit manually -->
23+
#### `audit`
24+
25+
* Default: true
26+
* Type: Boolean
27+
28+
When "true" submit audit reports alongside the current npm command to the
29+
default registry and all registries configured for scopes. See the
30+
documentation for [`npm audit`](/commands/npm-audit) for details on what is
31+
submitted.
32+
2333
#### `ignore-scripts`
2434

2535
* Default: false

Diff for: deps/npm/docs/content/commands/npm-install-test.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,10 @@ will *not* run any pre- or post-scripts.
149149
* Default: true
150150
* Type: Boolean
151151

152-
When "true" submit audit reports alongside `npm install` runs to the default
153-
registry and all registries configured for scopes. See the documentation for
154-
[`npm audit`](/commands/npm-audit) for details on what is submitted.
152+
When "true" submit audit reports alongside the current npm command to the
153+
default registry and all registries configured for scopes. See the
154+
documentation for [`npm audit`](/commands/npm-audit) for details on what is
155+
submitted.
155156

156157
#### `bin-links`
157158

Diff for: deps/npm/docs/content/commands/npm-install.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -533,9 +533,10 @@ will *not* run any pre- or post-scripts.
533533
* Default: true
534534
* Type: Boolean
535535
536-
When "true" submit audit reports alongside `npm install` runs to the default
537-
registry and all registries configured for scopes. See the documentation for
538-
[`npm audit`](/commands/npm-audit) for details on what is submitted.
536+
When "true" submit audit reports alongside the current npm command to the
537+
default registry and all registries configured for scopes. See the
538+
documentation for [`npm audit`](/commands/npm-audit) for details on what is
539+
submitted.
539540
540541
#### `bin-links`
541542

Diff for: deps/npm/docs/content/commands/npm-link.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -233,9 +233,10 @@ will *not* run any pre- or post-scripts.
233233
* Default: true
234234
* Type: Boolean
235235

236-
When "true" submit audit reports alongside `npm install` runs to the default
237-
registry and all registries configured for scopes. See the documentation for
238-
[`npm audit`](/commands/npm-audit) for details on what is submitted.
236+
When "true" submit audit reports alongside the current npm command to the
237+
default registry and all registries configured for scopes. See the
238+
documentation for [`npm audit`](/commands/npm-audit) for details on what is
239+
submitted.
239240

240241
#### `bin-links`
241242

Diff for: deps/npm/docs/content/commands/npm-ls.md

+3
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ upon by the current project.
9191

9292
Whether or not to output JSON data, rather than the normal output.
9393

94+
* In `npm pkg set` it enables parsing set values with JSON.parse() before
95+
saving them to your `package.json`.
96+
9497
Not supported by all npm commands.
9598

9699
#### `long`

Diff for: deps/npm/docs/content/commands/npm-org.md

+3
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ password, npm will prompt on the command line for one.
8787

8888
Whether or not to output JSON data, rather than the normal output.
8989

90+
* In `npm pkg set` it enables parsing set values with JSON.parse() before
91+
saving them to your `package.json`.
92+
9093
Not supported by all npm commands.
9194

9295
#### `parseable`

Diff for: deps/npm/docs/content/commands/npm-outdated.md

+3
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,9 @@ upon by the current project.
104104

105105
Whether or not to output JSON data, rather than the normal output.
106106

107+
* In `npm pkg set` it enables parsing set values with JSON.parse() before
108+
saving them to your `package.json`.
109+
107110
Not supported by all npm commands.
108111

109112
#### `long`

Diff for: deps/npm/docs/content/commands/npm-pack.md

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ Note: This is NOT honored by other network related commands, eg `dist-tags`,
3434

3535
Whether or not to output JSON data, rather than the normal output.
3636

37+
* In `npm pkg set` it enables parsing set values with JSON.parse() before
38+
saving them to your `package.json`.
39+
3740
Not supported by all npm commands.
3841

3942
#### `pack-destination`

0 commit comments

Comments
 (0)