CLI documentation update from CI

npm CLI robot committed Jan 25, 2023 at 21:29 UTC 5c243385b9ebe6cf53c579051d46d8654f32f38a
12 files changed +21 -21
content/cli/v9/commands/npm-ci.md
+2 -2
@@ -140,13 +140,13 @@ folder instead of the current working directory. See
140 #### `install-strategy`
141
142 * Default: "hoisted"
143 -* Type: "hoisted", "nested", or "shallow"
143 +* Type: "hoisted", "nested", "shallow", or "linked"
144
145 Sets the strategy for installing packages in node_modules. hoisted
146 (default): Install non-duplicated in top-level, and duplicated as necessary
147 within directory structure. nested: (formerly --legacy-bundling) install in
148 place, no hoisting. shallow (formerly --global-style) only install direct
149 -deps at top-level. linked: (coming soon) install in node_modules/.store,
149 +deps at top-level. linked: (experimental) install in node_modules/.store,
150 link in place, unhoisted.
151
152 #### `legacy-bundling`
content/cli/v9/commands/npm-dedupe.md
+2 -2
@@ -111,13 +111,13 @@ values in `package.json` you can run: `npm update --save` instead.
111 #### `install-strategy`
112
113 * Default: "hoisted"
114 -* Type: "hoisted", "nested", or "shallow"
114 +* Type: "hoisted", "nested", "shallow", or "linked"
115
116 Sets the strategy for installing packages in node_modules. hoisted
117 (default): Install non-duplicated in top-level, and duplicated as necessary
118 within directory structure. nested: (formerly --legacy-bundling) install in
119 place, no hoisting. shallow (formerly --global-style) only install direct
120 -deps at top-level. linked: (coming soon) install in node_modules/.store,
120 +deps at top-level. linked: (experimental) install in node_modules/.store,
121 link in place, unhoisted.
122
123 #### `legacy-bundling`
content/cli/v9/commands/npm-find-dupes.md
+2 -2
@@ -51,13 +51,13 @@ duplications, without actually changing the package tree.
51 #### `install-strategy`
52
53 * Default: "hoisted"
54 -* Type: "hoisted", "nested", or "shallow"
54 +* Type: "hoisted", "nested", "shallow", or "linked"
55
56 Sets the strategy for installing packages in node_modules. hoisted
57 (default): Install non-duplicated in top-level, and duplicated as necessary
58 within directory structure. nested: (formerly --legacy-bundling) install in
59 place, no hoisting. shallow (formerly --global-style) only install direct
60 -deps at top-level. linked: (coming soon) install in node_modules/.store,
60 +deps at top-level. linked: (experimental) install in node_modules/.store,
61 link in place, unhoisted.
62
63 #### `legacy-bundling`
content/cli/v9/commands/npm-install-ci-test.md
+2 -2
@@ -86,13 +86,13 @@ folder instead of the current working directory. See
86 #### `install-strategy`
87
88 * Default: "hoisted"
89 -* Type: "hoisted", "nested", or "shallow"
89 +* Type: "hoisted", "nested", "shallow", or "linked"
90
91 Sets the strategy for installing packages in node_modules. hoisted
92 (default): Install non-duplicated in top-level, and duplicated as necessary
93 within directory structure. nested: (formerly --legacy-bundling) install in
94 place, no hoisting. shallow (formerly --global-style) only install direct
95 -deps at top-level. linked: (coming soon) install in node_modules/.store,
95 +deps at top-level. linked: (experimental) install in node_modules/.store,
96 link in place, unhoisted.
97
98 #### `legacy-bundling`
content/cli/v9/commands/npm-install-test.md
+2 -2
@@ -87,13 +87,13 @@ folder instead of the current working directory. See
87 #### `install-strategy`
88
89 * Default: "hoisted"
90 -* Type: "hoisted", "nested", or "shallow"
90 +* Type: "hoisted", "nested", "shallow", or "linked"
91
92 Sets the strategy for installing packages in node_modules. hoisted
93 (default): Install non-duplicated in top-level, and duplicated as necessary
94 within directory structure. nested: (formerly --legacy-bundling) install in
95 place, no hoisting. shallow (formerly --global-style) only install direct
96 -deps at top-level. linked: (coming soon) install in node_modules/.store,
96 +deps at top-level. linked: (experimental) install in node_modules/.store,
97 link in place, unhoisted.
98
99 #### `legacy-bundling`
content/cli/v9/commands/npm-install.md
+2 -2
@@ -477,13 +477,13 @@ folder instead of the current working directory. See
477 #### `install-strategy`
478
479 * Default: "hoisted"
480 -* Type: "hoisted", "nested", or "shallow"
480 +* Type: "hoisted", "nested", "shallow", or "linked"
481
482 Sets the strategy for installing packages in node_modules. hoisted
483 (default): Install non-duplicated in top-level, and duplicated as necessary
484 within directory structure. nested: (formerly --legacy-bundling) install in
485 place, no hoisting. shallow (formerly --global-style) only install direct
486 -deps at top-level. linked: (coming soon) install in node_modules/.store,
486 +deps at top-level. linked: (experimental) install in node_modules/.store,
487 link in place, unhoisted.
488
489 #### `legacy-bundling`
content/cli/v9/commands/npm-link.md
+2 -2
@@ -178,13 +178,13 @@ folder instead of the current working directory. See
178 #### `install-strategy`
179
180 * Default: "hoisted"
181 -* Type: "hoisted", "nested", or "shallow"
181 +* Type: "hoisted", "nested", "shallow", or "linked"
182
183 Sets the strategy for installing packages in node_modules. hoisted
184 (default): Install non-duplicated in top-level, and duplicated as necessary
185 within directory structure. nested: (formerly --legacy-bundling) install in
186 place, no hoisting. shallow (formerly --global-style) only install direct
187 -deps at top-level. linked: (coming soon) install in node_modules/.store,
187 +deps at top-level. linked: (experimental) install in node_modules/.store,
188 link in place, unhoisted.
189
190 #### `legacy-bundling`
content/cli/v9/commands/npm-ls.md
+1 -1
@@ -58,7 +58,7 @@ packages will *also* show the paths to the specified packages. For
58 example, running `npm ls promzard` in npm's source tree will show:
59
60 ```bash
61 -npm@9.3.1 /path/to/npm
61 +npm@9.4.0 /path/to/npm
62 └─┬ init-package-json@0.0.4
63 └── promzard@0.1.5
64 ```
content/cli/v9/commands/npm-update.md
+2 -2
@@ -217,13 +217,13 @@ folder instead of the current working directory. See
217 #### `install-strategy`
218
219 * Default: "hoisted"
220 -* Type: "hoisted", "nested", or "shallow"
220 +* Type: "hoisted", "nested", "shallow", or "linked"
221
222 Sets the strategy for installing packages in node_modules. hoisted
223 (default): Install non-duplicated in top-level, and duplicated as necessary
224 within directory structure. nested: (formerly --legacy-bundling) install in
225 place, no hoisting. shallow (formerly --global-style) only install direct
226 -deps at top-level. linked: (coming soon) install in node_modules/.store,
226 +deps at top-level. linked: (experimental) install in node_modules/.store,
227 link in place, unhoisted.
228
229 #### `legacy-bundling`
content/cli/v9/commands/npm.md
+1 -1
@@ -31,7 +31,7 @@ Note: This command is unaware of workspaces.
31
32 ### Version
33
34 -9.3.1
34 +9.4.0
35
36 ### Description
37
content/cli/v9/using-npm/config.md
+2 -2
@@ -714,13 +714,13 @@ workspaces.
714 #### `install-strategy`
715
716 * Default: "hoisted"
717 -* Type: "hoisted", "nested", or "shallow"
717 +* Type: "hoisted", "nested", "shallow", or "linked"
718
719 Sets the strategy for installing packages in node_modules. hoisted
720 (default): Install non-duplicated in top-level, and duplicated as necessary
721 within directory structure. nested: (formerly --legacy-bundling) install in
722 place, no hoisting. shallow (formerly --global-style) only install direct
723 -deps at top-level. linked: (coming soon) install in node_modules/.store,
723 +deps at top-level. linked: (experimental) install in node_modules/.store,
724 link in place, unhoisted.
725
726 #### `json`
src/theme/nav.yml
+1 -1
@@ -1053,7 +1053,7 @@
1053 - title: Changelog
1054 url: /cli/v8/using-npm/changelog
1055 description: Changelog notes for each version
1056 - - title: Version 9.3.1 (Latest Release)
1056 + - title: Version 9.4.0 (Latest Release)
1057 shortName: v9
1058 url: /cli/v9
1059 default: true