File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4848 "no-use-before-define" : 0 ,
4949 "newline-per-chained-call" : 0 ,
5050 "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+ ],
5761 "arrow-body-style" : [
5862 2 ,
5963 " as-needed"
Original file line number Diff line number Diff line change 66 . option ( '-v, --version' , 'check version' )
77 . description ( 'Initialize a MERN powered project' )
88 . 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' )
1212 . parse ( process . argv ) ;
1313
1414if ( ! program . args . length ) {
Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ test('shows help on --help', async (t) => {
1313 Commands:
1414
1515 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
1619 help [cmd] display help for [cmd]
1720
1821 Initialize a MERN powered project
@@ -33,6 +36,9 @@ test('shows help on --h', async (t) => {
3336 Commands:
3437
3538 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
3642 help [cmd] display help for [cmd]
3743
3844 Initialize a MERN powered project
You can’t perform that action at this time.
0 commit comments