Skip to content

Commit 8939b25

Browse files
committed
Fix cmdline aliases specs
1 parent 4585f44 commit 8939b25

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/build/options.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ module.exports = minimist(process.argv.slice(2), {
88
string: ["browser", "tests", "inspect", "host", "reporter", "stackTraceLimit", "timeout", "shards", "shardId"],
99
alias: {
1010
"b": "browser",
11-
"d": "debug", "debug-brk": "debug",
12-
"i": "inspect", "inspect-brk": "inspect",
13-
"t": "tests", "test": "tests",
14-
"ru": "runners", "runner": "runners",
11+
"d": ["debug", "debug-brk"],
12+
"i": ["inspect", "inspect-brk"],
13+
"t": ["tests", "test"],
14+
"ru": ["runners", "runner"],
1515
"r": "reporter",
16-
"c": "colors", "color": "colors",
16+
"c": ["colors", "color"],
1717
"skippercent": "skipPercent",
1818
"w": "workers",
1919
"f": "fix"

0 commit comments

Comments
 (0)