Pass arguments to code-server during watch

This commit is contained in:
Asher 2020-02-05 14:48:15 -06:00
parent 6e809b6a31
commit a149c5fc60
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A

View File

@ -330,7 +330,7 @@ class Builder {
if (server) { if (server) {
server.kill() server.kill()
} }
const s = cp.fork(path.join(this.rootPath, "out/node/entry.js")) const s = cp.fork(path.join(this.rootPath, "out/node/entry.js"), process.argv.slice(2))
console.log(`[server] spawned process ${s.pid}`) console.log(`[server] spawned process ${s.pid}`)
s.on("exit", () => console.log(`[server] process ${s.pid} exited`)) s.on("exit", () => console.log(`[server] process ${s.pid} exited`))
server = s server = s