10BC0 deps: upgrade npm to 10.8.2 · nodejs/node@2f66c7e · GitHub
[go: up one dir, main page]

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 <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>
1 parent 32ac80a commit 2f66c7e

File tree

260 files changed

+1582
-2649
lines changed
  • configuring-npm
  • using-npm
  • lib/commands
  • man
  • node_modules
  • tap-snapshots/test/lib/commands
  • test/lib/commands
  • 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

    Lines changed: 1 addition & 1 deletion
    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 & regi 5722 stry
    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

    Lines changed: 2 additions & 0 deletions
    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

    Lines changed: 1 addition & 1 deletion
    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-
    npm@10.8.1 /path/to/npm
    30+
    npm@10.8.2 /path/to/npm
    3131
    └─┬ init-package-json@0.0.4
    3232
    └── promzard@0.1.5
    3333
    ```

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

    Lines changed: 2 additions & 2 deletions
    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

    Lines changed: 21 additions & 9 deletions
    • Display the source diff
    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

    Lines changed: 2 additions & 2 deletions
    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

    Lines changed: 2 additions & 2 deletions
    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- E2CA
    <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

    Lines changed: 2 additions & 2 deletions
    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

    Lines changed: 2 additions & 2 deletions
    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

    Lines changed: 2 additions & 2 deletions
    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>

    0 commit comments

    Comments
     (0)
    0