Skip to content

Commit 648041d

Browse files
npm-cli-botMylesBorins
authored andcommittedFeb 18, 2023
deps: upgrade npm to 9.4.0
PR-URL: #46353 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent 880a65d commit 648041d

Some content is hidden

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

61 files changed

+660
-164
lines changed
 

‎deps/npm/docs/content/commands/npm-ci.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,13 @@ folder instead of the current working directory. See
109109
#### `install-strategy`
110110

111111
* Default: "hoisted"
112-
* Type: "hoisted", "nested", or "shallow"
112+
* Type: "hoisted", "nested", "shallow", or "linked"
113113

114114
Sets the strategy for installing packages in node_modules. hoisted
115115
(default): Install non-duplicated in top-level, and duplicated as necessary
116116
within directory structure. nested: (formerly --legacy-bundling) install in
117117
place, no hoisting. shallow (formerly --global-style) only install direct
118-
deps at top-level. linked: (coming soon) install in node_modules/.store,
118+
deps at top-level. linked: (experimental) install in node_modules/.store,
119119
link in place, unhoisted.
120120

121121
#### `legacy-bundling`

‎deps/npm/docs/content/commands/npm-dedupe.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ values in `package.json` you can run: `npm update --save` instead.
8080
#### `install-strategy`
8181

8282
* Default: "hoisted"
83-
* Type: "hoisted", "nested", or "shallow"
83+
* Type: "hoisted", "nested", "shallow", or "linked"
8484

8585
Sets the strategy for installing packages in node_modules. hoisted
8686
(default): Install non-duplicated in top-level, and duplicated as necessary
8787
within directory structure. nested: (formerly --legacy-bundling) install in
8888
place, no hoisting. shallow (formerly --global-style) only install direct
89-
deps at top-level. linked: (coming soon) install in node_modules/.store,
89+
deps at top-level. linked: (experimental) install in node_modules/.store,
9090
link in place, unhoisted.
9191

9292
#### `legacy-bundling`

0 commit comments

Comments
 (0)
Please sign in to comment.