mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
10 lines
262 B
JavaScript
10 lines
262 B
JavaScript
|
import cp from "node:child_process";
|
||
|
import * as path from "node:path";
|
||
|
|
||
|
const script = path.join(
|
||
|
path.dirname(path.fromFileUrl(import.meta.url)),
|
||
|
"infinite_loop.js",
|
||
|
);
|
||
|
const childProcess = cp.spawn(Deno.execPath(), ["run", script]);
|
||
|
childProcess.unref();
|