Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pcattori committed May 3, 2023
1 parent b41490b commit 5d418e3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/remix-dev/devServer_unstable/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,10 @@ let relativePath = (file: string) => path.relative(process.cwd(), file);
let kill = async (p?: execa.ExecaChildProcess) => {
if (p === undefined) return;
let channel = Channel.create<void>();
p.on("exit", channel.ok);
p.on("exit", () => {
console.log("exit -> channel ok");
channel.ok();
});

// https://github.com/nodejs/node/issues/12378
if (process.platform === "win32") {
Expand Down

0 comments on commit 5d418e3

Please sign in to comment.