2016-10-05 23:52:50 +00:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
2016-10-19 12:58:08 +00:00
|
|
|
import { join } from 'path'
|
2016-10-17 00:00:17 +00:00
|
|
|
import { spawn } from 'cross-spawn'
|
2016-10-05 23:52:50 +00:00
|
|
|
|
|
|
|
const defaultCommand = 'dev'
|
|
|
|
const commands = new Set([
|
|
|
|
defaultCommand,
|
2016-10-16 23:55:30 +00:00
|
|
|
'init',
|
2016-10-05 23:52:50 +00:00
|
|
|
'build',
|
|
|
|
'start'
|
|
|
|
])
|
|
|
|
|
|
|
|
let cmd = process.argv[2]
|
|
|
|
let args
|
|
|
|
|
|
|
|
if (commands.has(cmd)) {
|
|
|
|
args = process.argv.slice(3)
|
|
|
|
} else {
|
|
|
|
cmd = defaultCommand
|
|
|
|
args = process.argv.slice(2)
|
|
|
|
}
|
|
|
|
|
2016-10-19 12:58:08 +00:00
|
|
|
const bin = join(__dirname, 'next-' + cmd)
|
2016-10-05 23:52:50 +00:00
|
|
|
|
|
|
|
const proc = spawn(bin, args, { stdio: 'inherit', customFds: [0, 1, 2] })
|
|
|
|
proc.on('close', (code) => process.exit(code))
|
|
|
|
proc.on('error', (err) => {
|
2016-10-14 15:05:08 +00:00
|
|
|
console.error(err)
|
2016-10-05 23:52:50 +00:00
|
|
|
process.exit(1)
|
|
|
|
})
|