mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
10 lines
301 B
JavaScript
10 lines
301 B
JavaScript
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();
|