Skip to content
This repository was archived by the owner on Mar 25, 2023. It is now read-only.

Commit b894dfb

Browse files
committed
Improve --help messages
1 parent f0b4c5d commit b894dfb

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

packages/cli/main.ts

+14-14
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,7 @@ const modules: ModuleSet<tjs.Program, tjs.Definition> = {
2323
fsx
2424
}
2525

26-
export const buildArgs = (yargs: yargs.Argv) => yargs
27-
.option('pattern', {
28-
type: 'string',
29-
describe: 'Regular expression that matches basename of config files',
30-
default: DEFAULT_PATTERN
31-
})
32-
.option('ignored', {
33-
type: 'array',
34-
describe: 'Name of directories to be ignored',
35-
default: DEFAULT_IGNORED
36-
})
26+
const NO_TRANSFORM = <X> (x: X) => x
3727

3828
const handleStatus = (status: Promise<Status>) => status
3929
.then(status => process.exit(status))
@@ -44,22 +34,32 @@ const handleStatus = (status: Promise<Status>) => status
4434

4535
// tslint:disable-next-line:no-unused-expression
4636
yargs
37+
.option('pattern', {
38+
type: 'string',
39+
describe: 'Regular expression that matches basename of config files',
40+
default: DEFAULT_PATTERN
41+
})
42+
.option('ignored', {
43+
type: 'array',
44+
describe: 'Name of directories to be ignored',
45+
default: DEFAULT_IGNORED
46+
})
4747
.command(
4848
'test',
4949
'Check for out-of-date schema files',
50-
buildArgs,
50+
NO_TRANSFORM,
5151
args => handleStatus(cmdTest({ args, modules }))
5252
)
5353
.command(
5454
'generate',
5555
'Generate schema files',
56-
buildArgs,
56+
NO_TRANSFORM,
5757
args => handleStatus(cmdGenerate({ args, modules }))
5858
)
5959
.command(
6060
'clean',
6161
'Delete generated schema files',
62-
buildArgs,
62+
NO_TRANSFORM,
6363
args => handleStatus(cmdClean({ args, modules }))
6464
)
6565
.demandCommand()

0 commit comments

Comments
 (0)