File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -47,19 +47,19 @@ program
4747 } )
4848
4949program
50- . command ( 'invoke <plugin> [pluginOptions]' )
50+ . command ( 'add <plugin> [pluginOptions]' )
5151 . allowUnknownOption ( )
52- . description ( 'invoke the generator of a plugin in an already created project' )
52+ . description ( 'install a plugin and invoke its generator in an already created project' )
5353 . action ( ( plugin ) => {
54- require ( '../lib/invoke ' ) ( plugin , minimist ( process . argv . slice ( 3 ) ) )
54+ require ( '../lib/add ' ) ( plugin , minimist ( process . argv . slice ( 3 ) ) )
5555 } )
5656
5757program
58- . command ( 'add <plugin> [pluginOptions]' )
58+ . command ( 'invoke <plugin> [pluginOptions]' )
5959 . allowUnknownOption ( )
60- . description ( 'install a plugin and invoke its generator in an already created project' )
60+ . description ( 'invoke the generator of a plugin in an already created project' )
6161 . action ( ( plugin ) => {
62- require ( '../lib/add ' ) ( plugin , minimist ( process . argv . slice ( 3 ) ) )
62+ require ( '../lib/invoke ' ) ( plugin , minimist ( process . argv . slice ( 3 ) ) )
6363 } )
6464
6565program
You can’t perform that action at this time.
0 commit comments