mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-14 03:11:19 -06:00
15 lines
247 B
JavaScript
15 lines
247 B
JavaScript
exports.getPromptModules = () => {
|
|
return [
|
|
'vueVersion',
|
|
'babel',
|
|
'typescript',
|
|
'pwa',
|
|
'router',
|
|
'vuex',
|
|
'cssPreprocessors',
|
|
'linter',
|
|
'unit',
|
|
'e2e'
|
|
].map(file => require(`../promptModules/${file}`))
|
|
}
|