1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/bin/next

32 lines
588 B
Plaintext
Raw Normal View History

2016-10-05 23:52:50 +00:00
#!/usr/bin/env node
2016-10-19 12:58:08 +00:00
import { join } from 'path'
import { spawn } from 'cross-spawn'
2016-10-05 23:52:50 +00:00
const defaultCommand = 'dev'
const commands = new Set([
defaultCommand,
'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)
})