summaryrefslogtreecommitdiff
path: root/deps/npm/lib
diff options
context:
space:
mode:
authornpm CLI robot <npm-cli+bot@github.com>2023-01-27 13:34:28 -0500
committerGitHub <noreply@github.com>2023-01-27 18:34:28 +0000
commitb6531696fa75a77ea7a153cfac33111842c8f47f (patch)
tree39d0091b6d9d547e22ffd88e8a1be4d85ebc5e3d /deps/npm/lib
parent19623e386fb78b59ba6b79de7e3fd00257d812fc (diff)
downloadnode-new-b6531696fa75a77ea7a153cfac33111842c8f47f.tar.gz
deps: upgrade npm to 9.4.0
PR-URL: https://github.com/nodejs/node/pull/46353 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'deps/npm/lib')
-rw-r--r--deps/npm/lib/utils/config/definitions.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/npm/lib/utils/config/definitions.js b/deps/npm/lib/utils/config/definitions.js
index 9ddbafd46f..578e0daa67 100644
--- a/deps/npm/lib/utils/config/definitions.js
+++ b/deps/npm/lib/utils/config/definitions.js
@@ -1090,14 +1090,14 @@ define('install-links', {
define('install-strategy', {
default: 'hoisted',
- type: ['hoisted', 'nested', 'shallow'],
+ type: ['hoisted', 'nested', 'shallow', 'linked'],
description: `
Sets the strategy for installing packages in node_modules.
hoisted (default): Install non-duplicated in top-level, and duplicated as
necessary within directory structure.
nested: (formerly --legacy-bundling) install in place, no hoisting.
shallow (formerly --global-style) only install direct deps at top-level.
- linked: (coming soon) install in node_modules/.store, link in place,
+ linked: (experimental) install in node_modules/.store, link in place,
unhoisted.
`,
flatten,