mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-16 04:10:20 -06:00
23 lines
515 B
JavaScript
23 lines
515 B
JavaScript
module.exports = cli => {
|
|
cli.injectFeature({
|
|
name: 'Babel',
|
|
value: 'babel',
|
|
short: 'Babel',
|
|
description: 'Transpile modern JavaScript to older versions (for compatibility)',
|
|
checked: true
|
|
})
|
|
|
|
cli.onPromptComplete((answers, options) => {
|
|
if (answers.features.includes('ts')) {
|
|
if (!answers.useTsWithBabel) {
|
|
return
|
|
}
|
|
} else {
|
|
if (!answers.features.includes('babel')) {
|
|
return
|
|
}
|
|
}
|
|
options.plugins['@vue/cli-plugin-babel'] = {}
|
|
})
|
|
}
|