dev.ts
Raw
1const server = Bun.spawn(["bun", "--watch", "src/index.tsx"], { stdio: ["inherit", "inherit", "inherit"] });
2const css = Bun.spawn(["bun", "scripts/build-css.ts", "--watch"], { stdio: ["inherit", "inherit", "inherit"] });
3
4process.on("SIGINT", () => {
5 server.kill();
6 css.kill();
7 process.exit(0);
8});
9
10await Promise.all([server.exited, css.exited]);
11