Skip to content

Commit 2f66c7e

Browse files
npm-cli-botmarco-ippolito
authored andcommitted
deps: upgrade npm to 10.8.2
PR-URL: #53799 Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Marco Ippolito <[email protected]>
1 parent 32ac80a commit 2f66c7e

File tree

260 files changed

+1582
-2649
lines changed

Some content is hidden

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

260 files changed

+1582
-2649
lines changed

deps/npm/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ npm <command>
4040
* Note: you can also search docs locally with `npm help-search <query>`
4141
* [**Bug Tracker**](https://github.com/npm/cli/issues) - Search or submit bugs against the CLI
4242
* [**Roadmap**](https://github.com/orgs/github/projects/4247/views/1?filterQuery=npm) - Track & follow along with our public roadmap
43-
* [**Feedback**](https://github.com/npm/feedback) - Contribute ideas & discussion around the npm registry, website & CLI
43+
* [**Community Feedback and Discussions**](https://github.com/orgs/community/discussions/categories/npm) - Contribute ideas & discussion around the npm registry, website & CLI
4444
* [**RFCs**](https://github.com/npm/rfcs) - Contribute ideas & specifications for the API/design of the npm CLI
4545
* [**Service Status**](https://status.npmjs.org/) - Monitor the current status & see incident reports for the website & registry
4646
* [**Project Status**](https://npm.github.io/statusboard/) - See the health of all our maintained OSS projects in one view

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

+2
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ into a tarball (b).
138138
139139
* `-D, --save-dev`: Package will appear in your `devDependencies`.
140140
141+
* `--save-peer`: Package will appear in your `peerDependencies`.
142+
141143
* `-O, --save-optional`: Package will appear in your
142144
`optionalDependencies`.
143145

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ packages will *also* show the paths to the specified packages. For
2727
example, running `npm ls promzard` in npm's source tree will show:
2828

2929
```bash
30-
[email protected].1 /path/to/npm
30+
[email protected].2 /path/to/npm
3131
3232
3333
```

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Note: This command is unaware of workspaces.
1414

1515
### Version
1616

17-
10.8.1
17+
10.8.2
1818

1919
### Description
2020

@@ -158,7 +158,7 @@ Please be sure to follow the template and bug reporting guidelines.
158158

159159
Discuss new feature ideas on our discussion forum:
160160

161-
* <https://github.com/npm/feedback>
161+
* <https://github.com/orgs/community/discussions/categories/npm>
162162

163163
Or suggest formal RFC proposals:
164164

deps/npm/docs/content/configuring-npm/package-json.md

+21-9
Original file line numberDiff line numberDiff line change
@@ -225,23 +225,35 @@ npm also sets a top-level "maintainers" field with your npm user info.
225225
### funding
226226

227227
You can specify an object containing a URL that provides up-to-date
228-
information about ways to help fund development of your package, or a
229-
string URL, or an array of these:
228+
information about ways to help fund development of your package, a
229+
string URL, or an array of objects and string URLs:
230230

231231
```json
232232
{
233233
"funding": {
234234
"type" : "individual",
235235
"url" : "http://example.com/donate"
236-
},
236+
}
237+
}
238+
```
237239

240+
```json
241+
{
238242
"funding": {
239243
"type" : "patreon",
240244
"url" : "https://www.patreon.com/my-account"
241-
},
245+
}
246+
}
247+
```
242248

243-
"funding": "http://example.com/donate",
249+
```json
250+
{
251+
"funding": "http://example.com/donate"
252+
}
253+
```
244254

255+
```json
256+
{
245257
"funding": [
246258
{
247259
"type" : "individual",
@@ -258,7 +270,7 @@ string URL, or an array of these:
258270

259271
Users can use the `npm fund` subcommand to list the `funding` URLs of all
260272
dependencies of their project, direct and indirect. A shortcut to visit
261-
each funding url is also available when providing the project name such as:
273+
each funding URL is also available when providing the project name such as:
262274
`npm fund <projectname>` (when there are multiple URLs, the first one will
263275
be visited)
264276

@@ -506,7 +518,7 @@ Do it like this:
506518
{
507519
"repository": {
508520
"type": "git",
509-
"url": "https://github.com/npm/cli.git"
521+
"url": "git+https://github.com/npm/cli.git"
510522
}
511523
}
512524
```
@@ -541,8 +553,8 @@ which it lives:
541553
{
542554
"repository": {
543555
"type": "git",
544-
"url": "https://github.com/facebook/react.git",
545-
"directory": "packages/react-dom"
556+
"url": "git+https://github.com/npm/cli.git",
557+
"directory": "workspaces/libnpmpublish"
546558
}
547559
}
548560
```

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-access----1081">
144+
<h1 id="----npm-access----1082">
145145
<span>npm-access</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Set access level on published packages</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-adduser----1081">
144+
<h1 id="----npm-adduser----1082">
145145
<span>npm-adduser</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Add a registry user account</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-audit----1081">
144+
<h1 id="----npm-audit----1082">
145145
<span>npm-audit</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Run a security audit</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-bugs----1081">
144+
<h1 id="----npm-bugs----1082">
145145
<span>npm-bugs</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Report bugs for a package in a web browser</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-cache----1081">
144+
<h1 id="----npm-cache----1082">
145145
<span>npm-cache</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Manipulates packages cache</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-ci----1081">
144+
<h1 id="----npm-ci----1082">
145145
<span>npm-ci</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Clean install a project</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-completion----1081">
144+
<h1 id="----npm-completion----1082">
145145
<span>npm-completion</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Tab Completion for npm</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-config----1081">
144+
<h1 id="----npm-config----1082">
145145
<span>npm-config</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Manage the npm configuration files</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-dedupe----1081">
144+
<h1 id="----npm-dedupe----1082">
145145
<span>npm-dedupe</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Reduce duplication in the package tree</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-deprecate----1081">
144+
<h1 id="----npm-deprecate----1082">
145145
<span>npm-deprecate</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Deprecate a version of a package</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-diff----1081">
144+
<h1 id="----npm-diff----1082">
145145
<span>npm-diff</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">The registry diff command</span>
149149
</header>

deps/npm/docs/output/commands/npm-dist-tag.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-dist-tag----1081">
144+
<h1 id="----npm-dist-tag----1082">
145145
<span>npm-dist-tag</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Modify package distribution tags</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-docs----1081">
144+
<h1 id="----npm-docs----1082">
145145
<span>npm-docs</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Open documentation for a package in a web browser</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-doctor----1081">
144+
<h1 id="----npm-doctor----1082">
145145
<span>npm-doctor</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Check the health of your npm environment</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-edit----1081">
144+
<h1 id="----npm-edit----1082">
145145
<span>npm-edit</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Edit an installed package</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-exec----1081">
144+
<h1 id="----npm-exec----1082">
145145
<span>npm-exec</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Run a command from a local or remote npm package</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-explain----1081">
144+
<h1 id="----npm-explain----1082">
145145
<span>npm-explain</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Explain installed packages</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-explore----1081">
144+
<h1 id="----npm-explore----1082">
145145
<span>npm-explore</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Browse an installed package</span>
149149
</header>

deps/npm/docs/output/commands/npm-find-dupes.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-find-dupes----1081">
144+
<h1 id="----npm-find-dupes----1082">
145145
<span>npm-find-dupes</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Find duplication in the package tree</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-fund----1081">
144+
<h1 id="----npm-fund----1082">
145145
<span>npm-fund</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Retrieve funding information</span>
149149
</header>

deps/npm/docs/output/commands/npm-help-search.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-help-search----1081">
144+
<h1 id="----npm-help-search----1082">
145145
<span>npm-help-search</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Search npm help documentation</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-help----1081">
144+
<h1 id="----npm-help----1082">
145145
<span>npm-help</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Get help on npm</span>
149149
</header>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-hook----1081">
144+
<h1 id="----npm-hook----1082">
145145
<span>npm-hook</span>
146-
<span class="version">@10.8.1</span>
146+
<span class="version">@10.8.2</span>
147147
</h1>
148148
<span class="description">Manage registry hooks</span>
149149
</header>

0 commit comments

Comments
 (0)