mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-03-16 22:50:32 -05:00
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
module.exports = (api, options) => {
|
|
api.registerCommand('build', {
|
|
description: 'build for production',
|
|
usage: 'vue-cli-service build',
|
|
options: {
|
|
'--extractCSS': 'extract component CSS into one file.'
|
|
}
|
|
}, args => {
|
|
// TODO
|
|
})
|
|
}
|