Skip to content

Commit

Permalink
deps: upgrade npm to 10.8.2
Browse files Browse the repository at this point in the history
PR-URL: #53799
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
  • Loading branch information
npm-cli-bot authored and marco-ippolito committed Aug 19, 2024
1 parent 32ac80a commit 2f66c7e
Show file tree
Hide file tree
Showing 260 changed files with 1,582 additions and 2,649 deletions.
2 changes: 1 addition & 1 deletion deps/npm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ npm <command>
* Note: you can also search docs locally with `npm help-search <query>`
* [**Bug Tracker**](https://github.com/npm/cli/issues) - Search or submit bugs against the CLI
* [**Roadmap**](https://github.com/orgs/github/projects/4247/views/1?filterQuery=npm) - Track & follow along with our public roadmap
* [**Feedback**](https://github.com/npm/feedback) - Contribute ideas & discussion around the npm registry, website & CLI
* [**Community Feedback and Discussions**](https://github.com/orgs/community/discussions/categories/npm) - Contribute ideas & discussion around the npm registry, website & CLI
* [**RFCs**](https://github.com/npm/rfcs) - Contribute ideas & specifications for the API/design of the npm CLI
* [**Service Status**](https://status.npmjs.org/) - Monitor the current status & see incident reports for the website & registry
* [**Project Status**](https://npm.github.io/statusboard/) - See the health of all our maintained OSS projects in one view
Expand Down
2 changes: 2 additions & 0 deletions deps/npm/docs/content/commands/npm-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ into a tarball (b).
* `-D, --save-dev`: Package will appear in your `devDependencies`.
* `--save-peer`: Package will appear in your `peerDependencies`.
* `-O, --save-optional`: Package will appear in your
`optionalDependencies`.
Expand Down
2 changes: 1 addition & 1 deletion deps/npm/docs/content/commands/npm-ls.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ packages will *also* show the paths to the specified packages. For
example, running `npm ls promzard` in npm's source tree will show:

```bash
npm@10.8.1 /path/to/npm
npm@10.8.2 /path/to/npm
└─┬ init-package-json@0.0.4
└── promzard@0.1.5
```
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/content/commands/npm.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Note: This command is unaware of workspaces.

### Version

10.8.1
10.8.2

### Description

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

Discuss new feature ideas on our discussion forum:

* <https://github.com/npm/feedback>
* <https://github.com/orgs/community/discussions/categories/npm>

Or suggest formal RFC proposals:

Expand Down
30 changes: 21 additions & 9 deletions deps/npm/docs/content/configuring-npm/package-json.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,23 +225,35 @@ npm also sets a top-level "maintainers" field with your npm user info.
### funding

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

```json
{
"funding": {
"type" : "individual",
"url" : "http://example.com/donate"
},
}
}
```

```json
{
"funding": {
"type" : "patreon",
"url" : "https://www.patreon.com/my-account"
},
}
}
```

"funding": "http://example.com/donate",
```json
{
"funding": "http://example.com/donate"
}
```

```json
{
"funding": [
{
"type" : "individual",
Expand All @@ -258,7 +270,7 @@ string URL, or an array of these:

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

Expand Down Expand Up @@ -506,7 +518,7 @@ Do it like this:
{
"repository": {
"type": "git",
"url": "https://github.com/npm/cli.git"
"url": "git+https://github.com/npm/cli.git"
}
}
```
Expand Down Expand Up @@ -541,8 +553,8 @@ which it lives:
{
"repository": {
"type": "git",
"url": "https://github.com/facebook/react.git",
"directory": "packages/react-dom"
"url": "git+https://github.com/npm/cli.git",
"directory": "workspaces/libnpmpublish"
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-access.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-access----1081">
<h1 id="----npm-access----1082">
<span>npm-access</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Set access level on published packages</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-adduser.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-adduser----1081">
<h1 id="----npm-adduser----1082">
<span>npm-adduser</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Add a registry user account</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-audit.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-audit----1081">
<h1 id="----npm-audit----1082">
<span>npm-audit</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Run a security audit</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-bugs.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-bugs----1081">
<h1 id="----npm-bugs----1082">
<span>npm-bugs</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Report bugs for a package in a web browser</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-cache.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-cache----1081">
<h1 id="----npm-cache----1082">
<span>npm-cache</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Manipulates packages cache</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-ci.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-ci----1081">
<h1 id="----npm-ci----1082">
<span>npm-ci</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Clean install a project</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-completion.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-completion----1081">
<h1 id="----npm-completion----1082">
<span>npm-completion</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Tab Completion for npm</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-config.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-config----1081">
<h1 id="----npm-config----1082">
<span>npm-config</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Manage the npm configuration files</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-dedupe.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-dedupe----1081">
<h1 id="----npm-dedupe----1082">
<span>npm-dedupe</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Reduce duplication in the package tree</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-deprecate.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-deprecate----1081">
<h1 id="----npm-deprecate----1082">
<span>npm-deprecate</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Deprecate a version of a package</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-diff.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-diff----1081">
<h1 id="----npm-diff----1082">
<span>npm-diff</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">The registry diff command</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-dist-tag.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-dist-tag----1081">
<h1 id="----npm-dist-tag----1082">
<span>npm-dist-tag</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Modify package distribution tags</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-docs.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-docs----1081">
<h1 id="----npm-docs----1082">
<span>npm-docs</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Open documentation for a package in a web browser</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-doctor.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-doctor----1081">
<h1 id="----npm-doctor----1082">
<span>npm-doctor</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Check the health of your npm environment</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-edit----1081">
<h1 id="----npm-edit----1082">
<span>npm-edit</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Edit an installed package</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-exec.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-exec----1081">
<h1 id="----npm-exec----1082">
<span>npm-exec</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Run a command from a local or remote npm package</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-explain.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-explain----1081">
<h1 id="----npm-explain----1082">
<span>npm-explain</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Explain installed packages</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-explore.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-explore----1081">
<h1 id="----npm-explore----1082">
<span>npm-explore</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Browse an installed package</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-find-dupes.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-find-dupes----1081">
<h1 id="----npm-find-dupes----1082">
<span>npm-find-dupes</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Find duplication in the package tree</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-fund.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-fund----1081">
<h1 id="----npm-fund----1082">
<span>npm-fund</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Retrieve funding information</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-help-search.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-help-search----1081">
<h1 id="----npm-help-search----1082">
<span>npm-help-search</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Search npm help documentation</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-help.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-help----1081">
<h1 id="----npm-help----1082">
<span>npm-help</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Get help on npm</span>
</header>
Expand Down
4 changes: 2 additions & 2 deletions deps/npm/docs/output/commands/npm-hook.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@

<section id="content">
<header class="title">
<h1 id="----npm-hook----1081">
<h1 id="----npm-hook----1082">
<span>npm-hook</span>
<span class="version">@10.8.1</span>
<span class="version">@10.8.2</span>
</h1>
<span class="description">Manage registry hooks</span>
</header>
Expand Down
Loading

0 comments on commit 2f66c7e

Please sign in to comment.