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

50 lines
1.1 KiB
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'
import { watchFile } from 'fs'
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 startProcess = () => {
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)
})
return proc
}
let proc = startProcess()
if (cmd === 'dev') {
watchFile(join(process.cwd(), 'next.config.js'), (cur, prev) => {
if (cur.size > 0 || prev.size > 0) {
console.log('\n> Found a change in next.config.js, restarting the server...')
// Don't listen to 'close' now since otherwise parent gets killed by listener
proc.removeAllListeners('close')
proc.kill()
proc = startProcess()
}
})
}