UNPKG

291 BJavaScriptView Raw
1const sharedCLIOptions = require('../utils/sharedCLIOptions')
2
3module.exports = {
4 name: 'builtin:build',
5 apply(poi) {
6 const command = poi.cli.handleCommand(
7 'build',
8 'Build app in production mode',
9 () => poi.runCompiler()
10 )
11
12 sharedCLIOptions(command)
13 }
14}