Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 813b160

Browse filesBrowse files
npm-cli-botruyadorno
authored andcommitted
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 9c2f3ce commit 813b160
Copy full SHA for 813b160

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

61 files changed

+660
-164
lines changed
Open diff view settings
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-ci.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
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`
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-dedupe.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
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`
Collapse file

‎deps/npm/docs/content/commands/npm-find-dupes.md‎

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-find-dupes.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ duplications, without actually changing the package tree.
2020
#### `install-strategy`
2121

2222
* Default: "hoisted"
23-
* Type: "hoisted", "nested", or "shallow"
23+
* Type: "hoisted", "nested", "shallow", or "linked"
2424

2525
Sets the strategy for installing packages in node_modules. hoisted
2626
(default): Install non-duplicated in top-level, and duplicated as necessary
2727
within directory structure. nested: (formerly --legacy-bundling) install in
2828
place, no hoisting. shallow (formerly --global-style) only install direct
29-
deps at top-level. linked: (coming soon) install in node_modules/.store,
29+
deps at top-level. linked: (experimental) install in node_modules/.store,
3030
link in place, unhoisted.
3131

3232
#### `legacy-bundling`
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-install-ci-test.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ folder instead of the current working directory. See
5555
#### `install-strategy`
5656

5757
* Default: "hoisted"
58-
* Type: "hoisted", "nested", or "shallow"
58+
* Type: "hoisted", "nested", "shallow", or "linked"
5959

6060
Sets the strategy for installing packages in node_modules. hoisted
6161
(default): Install non-duplicated in top-level, and duplicated as necessary
6262
within directory structure. nested: (formerly --legacy-bundling) install in
6363
place, no hoisting. shallow (formerly --global-style) only install direct
64-
deps at top-level. linked: (coming soon) install in node_modules/.store,
64+
deps at top-level. linked: (experimental) install in node_modules/.store,
6565
link in place, unhoisted.
6666

6767
#### `legacy-bundling`
Collapse file

‎deps/npm/docs/content/commands/npm-install-test.md‎

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-install-test.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ folder instead of the current working directory. See
5656
#### `install-strategy`
5757

5858
* Default: "hoisted"
59-
* Type: "hoisted", "nested", or "shallow"
59+
* Type: "hoisted", "nested", "shallow", or "linked"
6060

6161
Sets the strategy for installing packages in node_modules. hoisted
6262
(default): Install non-duplicated in top-level, and duplicated as necessary
6363
within directory structure. nested: (formerly --legacy-bundling) install in
6464
place, no hoisting. shallow (formerly --global-style) only install direct
65-
deps at top-level. linked: (coming soon) install in node_modules/.store,
65+
deps at top-level. linked: (experimental) install in node_modules/.store,
6666
link in place, unhoisted.
6767

6868
#### `legacy-bundling`
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-install.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -446,13 +446,13 @@ folder instead of the current working directory. See
446446
#### `install-strategy`
447447
448448
* Default: "hoisted"
449-
* Type: "hoisted", "nested", or "shallow"
449+
* Type: "hoisted", "nested", "shallow", or "linked"
450450
451451
Sets the strategy for installing packages in node_modules. hoisted
452452
(default): Install non-duplicated in top-level, and duplicated as necessary
453453
within directory structure. nested: (formerly --legacy-bundling) install in
454454
place, no hoisting. shallow (formerly --global-style) only install direct
455-
deps at top-level. linked: (coming soon) install in node_modules/.store,
455+
deps at top-level. linked: (experimental) install in node_modules/.store,
456456
link in place, unhoisted.
457457
458458
#### `legacy-bundling`
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-link.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -147,13 +147,13 @@ folder instead of the current working directory. See
147147
#### `install-strategy`
148148

149149
* Default: "hoisted"
150-
* Type: "hoisted", "nested", or "shallow"
150+
* Type: "hoisted", "nested", "shallow", or "linked"
151151

152152
Sets the strategy for installing packages in node_modules. hoisted
153153
(default): Install non-duplicated in top-level, and duplicated as necessary
154154
within directory structure. nested: (formerly --legacy-bundling) install in
155155
place, no hoisting. shallow (formerly --global-style) only install direct
156-
deps at top-level. linked: (coming soon) install in node_modules/.store,
156+
deps at top-level. linked: (experimental) install in node_modules/.store,
157157
link in place, unhoisted.
158158

159159
#### `legacy-bundling`
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-ls.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
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@9.3.1 /path/to/npm
30+
npm@9.4.0 /path/to/npm
3131
└─┬ init-package-json@0.0.4
3232
└── promzard@0.1.5
3333
```
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-update.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -186,13 +186,13 @@ folder instead of the current working directory. See
186186
#### `install-strategy`
187187

188188
* Default: "hoisted"
189-
* Type: "hoisted", "nested", or "shallow"
189+
* Type: "hoisted", "nested", "shallow", or "linked"
190190

191191
Sets the strategy for installing packages in node_modules. hoisted
192192
(default): Install non-duplicated in top-level, and duplicated as necessary
193193
within directory structure. nested: (formerly --legacy-bundling) install in
194194
place, no hoisting. shallow (formerly --global-style) only install direct
195-
deps at top-level. linked: (coming soon) install in node_modules/.store,
195+
deps at top-level. linked: (experimental) install in node_modules/.store,
196196
link in place, unhoisted.
197197

198198
#### `legacy-bundling`
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Note: This command is unaware of workspaces.
1414

1515
### Version
1616

17-
9.3.1
17+
9.4.0
1818

1919
### Description
2020

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.