Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d477c0b

Browse files
author
CI User
committed
CLI documentation update from CI
1 parent 10dd46c commit d477c0b

Some content is hidden

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

66 files changed

+743
-147
lines changed

cli/v8

Submodule v8 updated 304 files

content/cli/v8/commands/npm-access.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,27 @@ github_path: docs/content/commands/npm-access.md
1717

1818
### Synopsis
1919

20+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
21+
<!-- automatically generated, do not edit manually -->
22+
<!-- see lib/commands/access.js -->
23+
2024
```bash
2125
npm access public [<package>]
2226
npm access restricted [<package>]
23-
2427
npm access grant <read-only|read-write> <scope:team> [<package>]
2528
npm access revoke <scope:team> [<package>]
26-
2729
npm access 2fa-required [<package>]
2830
npm access 2fa-not-required [<package>]
29-
3031
npm access ls-packages [<user>|<scope>|<scope:team>]
3132
npm access ls-collaborators [<package> [<user>]]
3233
npm access edit [<package>]
3334
```
3435
36+
<!-- automatically generated, do not edit manually -->
37+
<!-- see lib/commands/access.js -->
38+
39+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
40+
3541
### Description
3642
3743
Used to set access controls on private packages.

content/cli/v8/commands/npm-adduser.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,21 @@ github_path: docs/content/commands/npm-adduser.md
1616

1717
### Synopsis
1818

19+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
20+
<!-- automatically generated, do not edit manually -->
21+
<!-- see lib/commands/adduser.js -->
22+
1923
```bash
20-
npm adduser [--registry=url] [--scope=@orgname] [--auth-type=legacy]
24+
npm adduser
2125

2226
aliases: login, add-user
2327
```
2428

29+
<!-- automatically generated, do not edit manually -->
30+
<!-- see lib/commands/adduser.js -->
31+
32+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
33+
2534
Note: This command is unaware of workspaces.
2635

2736
### Description

content/cli/v8/commands/npm-audit.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,19 @@ github_path: docs/content/commands/npm-audit.md
1616

1717
### Synopsis
1818

19-
```bash
20-
npm audit [--json] [--production] [--audit-level=(low|moderate|high|critical)]
21-
npm audit fix [--force|--package-lock-only|--dry-run|--production|--only=(dev|prod)]
19+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
20+
<!-- automatically generated, do not edit manually -->
21+
<!-- see lib/commands/audit.js -->
2222

23-
common options: [--production] [--only=(dev|prod)]
23+
```bash
24+
npm audit [fix]
2425
```
2526

27+
<!-- automatically generated, do not edit manually -->
28+
<!-- see lib/commands/audit.js -->
29+
30+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
31+
2632
### Description
2733

2834
The audit command submits a description of the dependencies configured in

content/cli/v8/commands/npm-bin.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,19 @@ github_path: docs/content/commands/npm-bin.md
1616

1717
### Synopsis
1818

19+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
20+
<!-- automatically generated, do not edit manually -->
21+
<!-- see lib/commands/bin.js -->
22+
1923
```bash
20-
npm bin [-g|--global]
24+
npm bin
2125
```
2226

27+
<!-- automatically generated, do not edit manually -->
28+
<!-- see lib/commands/bin.js -->
29+
30+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
31+
2332
Note: This command is unaware of workspaces.
2433

2534
### Description

content/cli/v8/commands/npm-bugs.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,21 @@ github_path: docs/content/commands/npm-bugs.md
1616

1717
### Synopsis
1818

19+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
20+
<!-- automatically generated, do not edit manually -->
21+
<!-- see lib/commands/bugs.js -->
22+
1923
```bash
20-
npm bugs [<pkgname> [<pkgname> ...]]
24+
npm bugs [<pkgname>]
2125

22-
aliases: issues
26+
alias: issues
2327
```
2428

29+
<!-- automatically generated, do not edit manually -->
30+
<!-- see lib/commands/bugs.js -->
31+
32+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
33+
2534
### Description
2635

2736
This command tries to guess at the likely location of a package's bug

content/cli/v8/commands/npm-cache.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,26 @@ github_path: docs/content/commands/npm-cache.md
1616

1717
### Synopsis
1818

19-
```bash
20-
npm cache add <tarball file>...
21-
npm cache add <folder>...
22-
npm cache add <tarball url>...
23-
npm cache add <name>@<version>...
24-
25-
npm cache clean
26-
aliases: npm cache clear, npm cache rm
19+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
20+
<!-- automatically generated, do not edit manually -->
21+
<!-- see lib/commands/cache.js -->
2722

23+
```bash
24+
npm cache add <tarball file>
25+
npm cache add <folder>
26+
npm cache add <tarball url>
27+
npm cache add <git url>
28+
npm cache add <name>@<version>
29+
npm cache clean [<key>]
30+
npm cache ls [<name>@<version>]
2831
npm cache verify
2932
```
3033

34+
<!-- automatically generated, do not edit manually -->
35+
<!-- see lib/commands/cache.js -->
36+
37+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
38+
3139
Note: This command is unaware of workspaces.
3240

3341
### Description

content/cli/v8/commands/npm-ci.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,21 @@ github_path: docs/content/commands/npm-ci.md
1616

1717
### Synopsis
1818

19+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
20+
<!-- automatically generated, do not edit manually -->
21+
<!-- see lib/commands/ci.js -->
22+
1923
```bash
2024
npm ci
25+
26+
aliases: clean-install, ic, install-clean, isntall-clean
2127
```
2228

29+
<!-- automatically generated, do not edit manually -->
30+
<!-- see lib/commands/ci.js -->
31+
32+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
33+
2334
### Description
2435

2536
This command is similar to [`npm install`](/cli/v8/commands/npm-install), except

content/cli/v8/commands/npm-completion.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,19 @@ github_path: docs/content/commands/npm-completion.md
1616

1717
### Synopsis
1818

19+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
20+
<!-- automatically generated, do not edit manually -->
21+
<!-- see lib/commands/completion.js -->
22+
1923
```bash
20-
source <(npm completion)
24+
npm completion
2125
```
2226

27+
<!-- automatically generated, do not edit manually -->
28+
<!-- see lib/commands/completion.js -->
29+
30+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
31+
2332
Note: This command is unaware of workspaces.
2433

2534
### Description

content/cli/v8/commands/npm-config.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,25 @@ github_path: docs/content/commands/npm-config.md
1616

1717
### Synopsis
1818

19+
<!-- AUTOGENERATED USAGE DESCRIPTIONS START -->
20+
<!-- automatically generated, do not edit manually -->
21+
<!-- see lib/commands/config.js -->
22+
1923
```bash
2024
npm config set <key>=<value> [<key>=<value> ...]
2125
npm config get [<key> [<key> ...]]
2226
npm config delete <key> [<key> ...]
2327
npm config list [--json]
2428
npm config edit
25-
npm set <key>=<value> [<key>=<value> ...]
26-
npm get [<key> [<key> ...]]
2729

2830
alias: c
2931
```
3032
33+
<!-- automatically generated, do not edit manually -->
34+
<!-- see lib/commands/config.js -->
35+
36+
<!-- AUTOGENERATED USAGE DESCRIPTIONS END -->
37+
3138
Note: This command is unaware of workspaces.
3239
3340
### Description

0 commit comments

Comments
 (0)