@@ -23,17 +23,7 @@ const modules: ModuleSet<tjs.Program, tjs.Definition> = {
23
23
fsx
24
24
}
25
25
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
37
27
38
28
const handleStatus = ( status : Promise < Status > ) => status
39
29
. then ( status => process . exit ( status ) )
@@ -44,22 +34,32 @@ const handleStatus = (status: Promise<Status>) => status
44
34
45
35
// tslint:disable-next-line:no-unused-expression
46
36
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
+ } )
47
47
. command (
48
48
'test' ,
49
49
'Check for out-of-date schema files' ,
50
- buildArgs ,
50
+ NO_TRANSFORM ,
51
51
args => handleStatus ( cmdTest ( { args, modules } ) )
52
52
)
53
53
. command (
54
54
'generate' ,
55
55
'Generate schema files' ,
56
- buildArgs ,
56
+ NO_TRANSFORM ,
57
57
args => handleStatus ( cmdGenerate ( { args, modules } ) )
58
58
)
59
59
. command (
60
60
'clean' ,
61
61
'Delete generated schema files' ,
62
- buildArgs ,
62
+ NO_TRANSFORM ,
63
63
args => handleStatus ( cmdClean ( { args, modules } ) )
64
64
)
65
65
. demandCommand ( )
0 commit comments