@@ -182,7 +182,7 @@ module.exports = class Creator extends EventEmitter {
182
182
// run generator
183
183
log ( `🚀 Invoking generators...` )
184
184
this . emit ( 'creation' , { event : 'invoking-generators' } )
185
- const plugins = await this . resolvePlugins ( preset . plugins )
185
+ const plugins = await this . resolvePlugins ( preset . plugins , pkg )
186
186
const generator = new Generator ( context , {
187
187
pkg,
188
188
plugins,
@@ -355,21 +355,33 @@ module.exports = class Creator extends EventEmitter {
355
355
}
356
356
357
357
// { id: options } => [{ id, apply, options }]
358
- async resolvePlugins ( rawPlugins ) {
358
+ async resolvePlugins ( rawPlugins , pkg ) {
359
359
// ensure cli-service is invoked first
360
360
rawPlugins = sortObject ( rawPlugins , [ '@vue/cli-service' ] , true )
361
361
const plugins = [ ]
362
362
for ( const id of Object . keys ( rawPlugins ) ) {
363
363
const apply = loadModule ( `${ id } /generator` , this . context ) || ( ( ) => { } )
364
364
let options = rawPlugins [ id ] || { }
365
+
365
366
if ( options . prompts ) {
366
- const prompts = loadModule ( `${ id } /prompts` , this . context )
367
- if ( prompts ) {
367
+ let pluginPrompts = loadModule ( `${ id } /prompts` , this . context )
368
+
369
+ if ( pluginPrompts ) {
370
+ const prompt = inquirer . createPromptModule ( )
371
+
372
+ if ( typeof pluginPrompts === 'function' ) {
373
+ pluginPrompts = pluginPrompts ( pkg , prompt )
374
+ }
375
+ if ( typeof pluginPrompts . getPrompts === 'function' ) {
376
+ pluginPrompts = pluginPrompts . getPrompts ( pkg , prompt )
377
+ }
378
+
368
379
log ( )
369
380
log ( `${ chalk . cyan ( options . _isPreset ? `Preset options:` : id ) } ` )
370
- options = await inquirer . prompt ( prompts )
381
+ options = await prompt ( pluginPrompts )
371
382
}
372
383
}
384
+
373
385
plugins . push ( { id, apply, options } )
374
386
}
375
387
return plugins
0 commit comments