Skip to content

Commit c6b3d45

Browse files
committed
docs: fix refs to ws shorthand
Normalizes usage of `--ws` in docs. Fixes: npm/statusboard#313
1 parent a4e7f4e commit c6b3d45

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/content/commands/npm-exec.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ npm exec -- <pkg>[@<version>] [args...]
1111
npm exec --package=<pkg>[@<version>] -- <cmd> [args...]
1212
npm exec -c '<cmd> [args...]'
1313
npm exec --package=foo -c '<cmd> [args...]'
14-
npm exec [-ws] [-w <workspace-name] [args...]
14+
npm exec [--ws] [-w <workspace-name] [args...]
1515

1616
npx <pkg>[@<specifier>] [args...]
1717
npx -p <pkg>[@<specifier>] <cmd> [args...]
@@ -184,7 +184,7 @@ in this example we're using **eslint** to lint any js file found within each
184184
workspace folder:
185185

186186
```
187-
npm exec -ws -- eslint ./*.js
187+
npm exec --ws -- eslint ./*.js
188188
```
189189

190190
#### Filtering workspaces
@@ -275,7 +275,7 @@ children workspaces)
275275

276276
#### workspaces
277277

278-
* Alias: `-ws`
278+
* Alias: `--ws`
279279
* Type: Boolean
280280
* Default: `false`
281281

docs/content/commands/npm-run-script.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ children workspaces)
189189

190190
#### workspaces
191191

192-
* Alias: `-ws`
192+
* Alias: `--ws`
193193
* Type: Boolean
194194
* Default: `false`
195195

0 commit comments

Comments
 (0)