mirror of
https://github.com/react-webpack-generators/generator-react-webpack.git
synced 2025-12-08 18:01:59 +00:00
19 lines
416 B
JavaScript
19 lines
416 B
JavaScript
'use strict';
|
|
let utils = require('../../utils/all');
|
|
|
|
module.exports = [
|
|
{
|
|
type: 'input',
|
|
name: 'appName',
|
|
message: 'Please choose your application name',
|
|
default: utils.yeoman.getAppName()
|
|
},
|
|
{
|
|
type: 'list',
|
|
name: 'style',
|
|
message: 'Which styles language you want to use?',
|
|
choices: utils.config.getChoices('style'),
|
|
default: utils.config.getDefaultChoice('style')
|
|
}
|
|
];
|