blob: 8201ac44d1e1523283e19177f43c2eacfcadc694 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import cp from "node:child_process";
import * as path from "node:path";
import { fileURLToPath } from "node:url";
const script = path.join(
path.dirname(fileURLToPath(import.meta.url)),
"infinite_loop.js",
);
const childProcess = cp.spawn(Deno.execPath(), ["run", script]);
childProcess.unref();
|