2016-11-08 00:18:26 +00:00
|
|
|
#!/usr/bin/env node
|
2016-11-07 01:34:58 +00:00
|
|
|
|
|
|
|
const { join } = require('path')
|
|
|
|
const { spawn } = require('cross-spawn')
|
|
|
|
|
2016-11-09 22:59:41 +00:00
|
|
|
const defaultCommand = 'dev'
|
2016-11-07 01:34:58 +00:00
|
|
|
const commands = new Set([
|
|
|
|
defaultCommand,
|
2016-11-09 22:59:41 +00:00
|
|
|
'init',
|
|
|
|
'build',
|
2016-11-10 11:33:52 +00:00
|
|
|
'start',
|
|
|
|
'generate'
|
2016-11-07 01:34:58 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
let cmd = process.argv[2]
|
|
|
|
let args
|
|
|
|
|
|
|
|
if (commands.has(cmd)) {
|
|
|
|
args = process.argv.slice(3)
|
|
|
|
} else {
|
|
|
|
cmd = defaultCommand
|
|
|
|
args = process.argv.slice(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
const bin = join(__dirname, 'nuxt-' + cmd)
|
|
|
|
|
|
|
|
const proc = spawn(bin, args, { stdio: 'inherit', customFds: [0, 1, 2] })
|
|
|
|
proc.on('close', (code) => process.exit(code))
|
|
|
|
proc.on('error', (err) => {
|
|
|
|
console.error(err)
|
|
|
|
process.exit(1)
|
|
|
|
})
|