File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -47,19 +47,19 @@ program
47
47
} )
48
48
49
49
program
50
- . command ( 'invoke <plugin> [pluginOptions]' )
50
+ . command ( 'add <plugin> [pluginOptions]' )
51
51
. 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' )
53
53
. action ( ( plugin ) => {
54
- require ( '../lib/invoke ' ) ( plugin , minimist ( process . argv . slice ( 3 ) ) )
54
+ require ( '../lib/add ' ) ( plugin , minimist ( process . argv . slice ( 3 ) ) )
55
55
} )
56
56
57
57
program
58
- . command ( 'add <plugin> [pluginOptions]' )
58
+ . command ( 'invoke <plugin> [pluginOptions]' )
59
59
. 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' )
61
61
. action ( ( plugin ) => {
62
- require ( '../lib/add ' ) ( plugin , minimist ( process . argv . slice ( 3 ) ) )
62
+ require ( '../lib/invoke ' ) ( plugin , minimist ( process . argv . slice ( 3 ) ) )
63
63
} )
64
64
65
65
program
You can’t perform that action at this time.
0 commit comments