mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-04-22 12:28:44 -05:00
14 lines
344 B
JavaScript
14 lines
344 B
JavaScript
module.exports = api => {
|
|
api.onPromptComplete(options => {
|
|
if (!options.features.includes('ts')) {
|
|
api.injectDevDeps({
|
|
'@vue/cli-plugin-babel': '^1.0.0',
|
|
'babel-preset-vue-app': '^2.0.0'
|
|
})
|
|
api.injectFileMiddleware(files => {
|
|
files['.babelrc'] = api.renderFile('.babelrc')
|
|
})
|
|
}
|
|
})
|
|
}
|