File tree 3 files changed +19
-9
lines changed
3 files changed +19
-9
lines changed Original file line number Diff line number Diff line change 48
48
"no-use-before-define" : 0 ,
49
49
"newline-per-chained-call" : 0 ,
50
50
"import/no-dynamic-require" : 0 ,
51
- "prefer-destructuring" : [" error" , {
52
- "array" : false ,
53
- "object" : true
54
- }, {
55
- "enforceForRenamedProperties" : false
56
- }],
51
+ "prefer-destructuring" : [
52
+ " error" ,
53
+ {
54
+ "array" : false ,
55
+ "object" : true
56
+ },
57
+ {
58
+ "enforceForRenamedProperties" : false
59
+ }
60
+ ],
57
61
"arrow-body-style" : [
58
62
2 ,
59
63
" as-needed"
Original file line number Diff line number Diff line change 6
6
. option ( '-v, --version' , 'check version' )
7
7
. description ( 'Initialize a MERN powered project' )
8
8
. command ( 'init [name]' , 'Initialize a MERN project.' )
9
- // .command('list', 'List MERN variants')
10
- // .command('search [term]', 'Search for MERN variant')
11
- // .command('info [term]', 'View details of a MERN variant')
9
+ . command ( 'list' , 'List MERN variants' )
10
+ . command ( 'search [term]' , 'Search for MERN variant' )
11
+ . command ( 'info [term]' , 'View details of a MERN variant' )
12
12
. parse ( process . argv ) ;
13
13
14
14
if ( ! program . args . length ) {
Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ test('shows help on --help', async (t) => {
13
13
Commands:
14
14
15
15
init [name] Initialize a MERN project.
16
+ list List MERN variants
17
+ search [term] Search for MERN variant
18
+ info [term] View details of a MERN variant
16
19
help [cmd] display help for [cmd]
17
20
18
21
Initialize a MERN powered project
@@ -33,6 +36,9 @@ test('shows help on --h', async (t) => {
33
36
Commands:
34
37
35
38
init [name] Initialize a MERN project.
39
+ list List MERN variants
40
+ search [term] Search for MERN variant
41
+ info [term] View details of a MERN variant
36
42
help [cmd] display help for [cmd]
37
43
38
44
Initialize a MERN powered project
You can’t perform that action at this time.
0 commit comments