Skip to content

Commit

Permalink
fix(docs): rebuild docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed Jun 17, 2021
1 parent 872ea9e commit 1fb3776
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
10 changes: 8 additions & 2 deletions docs/content/commands/npm-audit.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,14 @@ Not supported by all npm commands.
* Default: false
* Type: Boolean

If set to true, it will update only the `package-lock.json`, instead of
checking `node_modules` and downloading dependencies.
If set to true, the current operation will only use the `package-lock.json`,
ignoring `node_modules`.

For `update` this means only the `package-lock.json` will be updated,
instead of checking `node_modules` and downloading dependencies.

For `list` this means the output will be based on the tree described by the
`package-lock.json`, rather than the contents of `node_modules`.

#### `omit`

Expand Down
14 changes: 14 additions & 0 deletions docs/content/commands/npm-ls.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,20 @@ variable will be set to `'production'` for all lifecycle scripts.

Used with `npm ls`, limiting output to only those packages that are linked.

#### `package-lock-only`

* Default: false
* Type: Boolean

If set to true, the current operation will only use the `package-lock.json`,
ignoring `node_modules`.

For `update` this means only the `package-lock.json` will be updated,
instead of checking `node_modules` and downloading dependencies.

For `list` this means the output will be based on the tree described by the
`package-lock.json`, rather than the contents of `node_modules`.

#### `unicode`

* Default: false on windows, true on mac/unix systems with a unicode locale,
Expand Down

0 comments on commit 1fb3776

Please sign in to comment.