UNPKG

235 BJavaScriptView Raw
1module.exports = poi => {
2 const command = poi.cli.handleCommand(
3 'build',
4 'Build app in production mode',
5 () => poi.runCompiler()
6 )
7
8 command.option('minimize', {
9 desc: 'Minimize the output',
10 alias: 'm'
11 })
12}