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