Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: upgrade npm to 9.7.1 #48378

Merged
merged 1 commit into from Jun 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 6 additions & 0 deletions deps/npm/docs/content/commands/npm-access.md
Expand Up @@ -90,6 +90,8 @@ Whether or not to output JSON data, rather than the normal output.

Not supported by all npm commands.



#### `otp`

* Default: null
Expand All @@ -101,13 +103,17 @@ when publishing or changing package permissions with `npm access`.
If not set, and a registry response fails with a challenge for a one-time
password, npm will prompt on the command line for one.



#### `registry`

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

The base URL of the npm registry.



### See Also

* [`libnpmaccess`](https://npm.im/libnpmaccess)
Expand Down
5 changes: 5 additions & 0 deletions deps/npm/docs/content/commands/npm-adduser.md
Expand Up @@ -32,6 +32,8 @@ email are read in from prompts.

The base URL of the npm registry.



#### `scope`

* Default: the scope of the current project, if any, or ""
Expand Down Expand Up @@ -62,6 +64,7 @@ npm init --scope=@foo --yes
```



#### `auth-type`

* Default: "web"
Expand All @@ -70,6 +73,8 @@ npm init --scope=@foo --yes
What authentication strategy to use with `login`. Note that if an `otp`
config is given, this value will always be set to `legacy`.



### See Also

* [npm registry](/using-npm/registry)
Expand Down
18 changes: 18 additions & 0 deletions deps/npm/docs/content/commands/npm-audit.md
Expand Up @@ -246,6 +246,8 @@ $ npm audit --audit-level=moderate
The minimum level of vulnerability for `npm audit` to exit with a non-zero
exit code.



#### `dry-run`

* Default: false
Expand All @@ -259,6 +261,8 @@ commands that modify your local installation, eg, `install`, `update`,
Note: This is NOT honored by other network related commands, eg `dist-tags`,
`owner`, etc.



#### `force`

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



#### `json`

* Default: false
Expand All @@ -297,6 +303,8 @@ Whether or not to output JSON data, rather than the normal output.

Not supported by all npm commands.



#### `package-lock-only`

* Default: false
Expand All @@ -311,6 +319,8 @@ instead of checking `node_modules` and downloading dependencies.
For `list` this means the output will be based on the tree described by the
`package-lock.json`, rather than the contents of `node_modules`.



#### `omit`

* Default: 'dev' if the `NODE_ENV` environment variable is set to
Expand All @@ -329,6 +339,8 @@ it will be included.
If the resulting omit list includes `'dev'`, then the `NODE_ENV` environment
variable will be set to `'production'` for all lifecycle scripts.



#### `foreground-scripts`

* Default: false
Expand All @@ -341,6 +353,8 @@ input, output, and error with the main npm process.
Note that this will generally make installs run slower, and be much noisier,
but can be useful for debugging.



#### `ignore-scripts`

* Default: false
Expand All @@ -353,6 +367,8 @@ Note that commands explicitly intended to run a particular script, such as
will still run their intended script if `ignore-scripts` is set, but they
will *not* run any pre- or post-scripts.



#### `workspace`

* Default:
Expand Down Expand Up @@ -415,6 +431,8 @@ When set file: protocol dependencies will be packed and installed as regular
dependencies instead of creating a symlink. This option has no effect on
workspaces.



### See Also

* [npm install](/commands/npm-install)
Expand Down
4 changes: 4 additions & 0 deletions deps/npm/docs/content/commands/npm-bugs.md
Expand Up @@ -34,13 +34,17 @@ terminal.
Set to `true` to use default system URL opener.
#### `registry`
* Default: "https://registry.npmjs.org/"
* Type: URL
The base URL of the npm registry.
#### `workspace`
* Default:
Expand Down
2 changes: 2 additions & 0 deletions deps/npm/docs/content/commands/npm-cache.md
Expand Up @@ -77,6 +77,8 @@ verify`.

The location of npm's cache directory.



### See Also

* [package spec](/using-npm/package-spec)
Expand Down
30 changes: 22 additions & 8 deletions deps/npm/docs/content/commands/npm-ci.md
Expand Up @@ -84,6 +84,8 @@ place, no hoisting. shallow (formerly --global-style) only install direct
deps at top-level. linked: (experimental) install in node_modules/.store,
link in place, unhoisted.



#### `legacy-bundling`

* Default: false
Expand All @@ -96,6 +98,8 @@ the same manner that they are depended on. This may cause very deep
directory structures and duplicate package installs as there is no
de-duplicating. Sets `--install-strategy=nested`.



#### `global-style`

* Default: false
Expand All @@ -106,6 +110,8 @@ de-duplicating. Sets `--install-strategy=nested`.
Only install direct dependencies in the top level `node_modules`, but hoist
on deeper dependencies. Sets `--install-strategy=shallow`.



#### `omit`

* Default: 'dev' if the `NODE_ENV` environment variable is set to
Expand All @@ -124,6 +130,8 @@ it will be included.
If the resulting omit list includes `'dev'`, then the `NODE_ENV` environment
variable will be set to `'production'` for all lifecycle scripts.



#### `strict-peer-deps`

* Default: false
Expand All @@ -143,15 +151,7 @@ When such an override is performed, a warning is printed, explaining the
conflict and the packages involved. If `--strict-peer-deps` is set, then
this warning is treated as a failure.

#### `package-lock`

* Default: true
* Type: Boolean

If set to false, then ignore `package-lock.json` files when installing. This
will also prevent _writing_ `package-lock.json` if `save` is true.

This configuration does not affect `npm ci`.

#### `foreground-scripts`

Expand All @@ -165,6 +165,8 @@ input, output, and error with the main npm process.
Note that this will generally make installs run slower, and be much noisier,
but can be useful for debugging.



#### `ignore-scripts`

* Default: false
Expand All @@ -177,6 +179,8 @@ Note that commands explicitly intended to run a particular script, such as
will still run their intended script if `ignore-scripts` is set, but they
will *not* run any pre- or post-scripts.



#### `audit`

* Default: true
Expand All @@ -187,6 +191,8 @@ default registry and all registries configured for scopes. See the
documentation for [`npm audit`](/commands/npm-audit) for details on what is
submitted.



#### `bin-links`

* Default: true
Expand All @@ -199,6 +205,8 @@ Set to false to have it not do this. This can be used to work around the
fact that some file systems don't support symlinks, even on ostensibly Unix
systems.



#### `fund`

* Default: true
Expand All @@ -208,6 +216,8 @@ When "true" displays the message at the end of each `npm install`
acknowledging the number of dependencies looking for funding. See [`npm
fund`](/commands/npm-fund) for details.



#### `dry-run`

* Default: false
Expand All @@ -221,6 +231,8 @@ commands that modify your local installation, eg, `install`, `update`,
Note: This is NOT honored by other network related commands, eg `dist-tags`,
`owner`, etc.



#### `workspace`

* Default:
Expand Down Expand Up @@ -283,6 +295,8 @@ When set file: protocol dependencies will be packed and installed as regular
dependencies instead of creating a symlink. This option has no effect on
workspaces.



### See Also

* [npm install](/commands/npm-install)
Expand Down
10 changes: 10 additions & 0 deletions deps/npm/docs/content/commands/npm-config.md
Expand Up @@ -116,6 +116,8 @@ Whether or not to output JSON data, rather than the normal output.
Not supported by all npm commands.
#### `global`
* Default: false
Expand All @@ -130,6 +132,8 @@ folder instead of the current working directory. See
* bin files are linked to `{prefix}/bin`
* man pages are linked to `{prefix}/share/man`
#### `editor`
* Default: The EDITOR or VISUAL environment variables, or
Expand All @@ -138,6 +142,8 @@ folder instead of the current working directory. See
The command to run for `npm edit` and `npm config edit`.
#### `location`
* Default: "user" unless `--global` is passed, which will also set this value
Expand All @@ -155,13 +161,17 @@ instead of the current working directory. See
* bin files are linked to `{prefix}/bin`
* man pages are linked to `{prefix}/share/man`
#### `long`
* Default: false
* Type: Boolean
Show extended information in `ls`, `search`, and `help-search`.
### See Also
* [npm folders](/configuring-npm/folders)
Expand Down