Skip to content

Commit

Permalink
CLI documentation update from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
npm-cli-bot committed Jan 25, 2023
1 parent b8a1e41 commit 5c24338
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions content/cli/v9/commands/npm-ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,13 @@ folder instead of the current working directory. See
#### `install-strategy`

* Default: "hoisted"
* Type: "hoisted", "nested", or "shallow"
* Type: "hoisted", "nested", "shallow", or "linked"

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,
deps at top-level. linked: (experimental) install in node_modules/.store,
link in place, unhoisted.

#### `legacy-bundling`
Expand Down
4 changes: 2 additions & 2 deletions content/cli/v9/commands/npm-dedupe.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,13 @@ values in `package.json` you can run: `npm update --save` instead.
#### `install-strategy`

* Default: "hoisted"
* Type: "hoisted", "nested", or "shallow"
* Type: "hoisted", "nested", "shallow", or "linked"

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,
deps at top-level. linked: (experimental) install in node_modules/.store,
link in place, unhoisted.

#### `legacy-bundling`
Expand Down
4 changes: 2 additions & 2 deletions content/cli/v9/commands/npm-find-dupes.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ duplications, without actually changing the package tree.
#### `install-strategy`

* Default: "hoisted"
* Type: "hoisted", "nested", or "shallow"
* Type: "hoisted", "nested", "shallow", or "linked"

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,
deps at top-level. linked: (experimental) install in node_modules/.store,
link in place, unhoisted.

#### `legacy-bundling`
Expand Down
4 changes: 2 additions & 2 deletions content/cli/v9/commands/npm-install-ci-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ folder instead of the current working directory. See
#### `install-strategy`

* Default: "hoisted"
* Type: "hoisted", "nested", or "shallow"
* Type: "hoisted", "nested", "shallow", or "linked"

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,
deps at top-level. linked: (experimental) install in node_modules/.store,
link in place, unhoisted.

#### `legacy-bundling`
Expand Down
4 changes: 2 additions & 2 deletions content/cli/v9/commands/npm-install-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ folder instead of the current working directory. See
#### `install-strategy`

* Default: "hoisted"
* Type: "hoisted", "nested", or "shallow"
* Type: "hoisted", "nested", "shallow", or "linked"

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,
deps at top-level. linked: (experimental) install in node_modules/.store,
link in place, unhoisted.

#### `legacy-bundling`
Expand Down
4 changes: 2 additions & 2 deletions content/cli/v9/commands/npm-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -477,13 +477,13 @@ folder instead of the current working directory. See
#### `install-strategy`
* Default: "hoisted"
* Type: "hoisted", "nested", or "shallow"
* Type: "hoisted", "nested", "shallow", or "linked"
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,
deps at top-level. linked: (experimental) install in node_modules/.store,
link in place, unhoisted.
#### `legacy-bundling`
Expand Down
4 changes: 2 additions & 2 deletions content/cli/v9/commands/npm-link.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,13 @@ folder instead of the current working directory. See
#### `install-strategy`

* Default: "hoisted"
* Type: "hoisted", "nested", or "shallow"
* Type: "hoisted", "nested", "shallow", or "linked"

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,
deps at top-level. linked: (experimental) install in node_modules/.store,
link in place, unhoisted.

#### `legacy-bundling`
Expand Down
2 changes: 1 addition & 1 deletion content/cli/v9/commands/npm-ls.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ packages will *also* show the paths to the specified packages. For
example, running `npm ls promzard` in npm's source tree will show:

```bash
npm@9.3.1 /path/to/npm
npm@9.4.0 /path/to/npm
└─┬ [email protected]
└── [email protected]
```
Expand Down
4 changes: 2 additions & 2 deletions content/cli/v9/commands/npm-update.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,13 +217,13 @@ folder instead of the current working directory. See
#### `install-strategy`

* Default: "hoisted"
* Type: "hoisted", "nested", or "shallow"
* Type: "hoisted", "nested", "shallow", or "linked"

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,
deps at top-level. linked: (experimental) install in node_modules/.store,
link in place, unhoisted.

#### `legacy-bundling`
Expand Down
2 changes: 1 addition & 1 deletion content/cli/v9/commands/npm.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Note: This command is unaware of workspaces.

### Version

9.3.1
9.4.0

### Description

Expand Down
4 changes: 2 additions & 2 deletions content/cli/v9/using-npm/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -714,13 +714,13 @@ workspaces.
#### `install-strategy`

* Default: "hoisted"
* Type: "hoisted", "nested", or "shallow"
* Type: "hoisted", "nested", "shallow", or "linked"

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,
deps at top-level. linked: (experimental) install in node_modules/.store,
link in place, unhoisted.

#### `json`
Expand Down
2 changes: 1 addition & 1 deletion src/theme/nav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,7 @@
- title: Changelog
url: /cli/v8/using-npm/changelog
description: Changelog notes for each version
- title: Version 9.3.1 (Latest Release)
- title: Version 9.4.0 (Latest Release)
shortName: v9
url: /cli/v9
default: true
Expand Down

0 comments on commit 5c24338

Please sign in to comment.