prasi-bun/pkgs/core/utils/restart.ts

11 lines
172 B
TypeScript

import { $ } from "execa";
import { g } from "./global";
export const restartServer = () => {
if (g.mode === "dev") {
$`bun ${g.mode}`;
}
process.exit(0);
};