From 031c28dec0347ec8180f531260ff159048824372 Mon Sep 17 00:00:00 2001 From: Max Howell Date: Thu, 19 Sep 2024 14:28:47 -0400 Subject: [PATCH] Pass `--unstable-process` Fixes #1038 --- deno.jsonc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deno.jsonc b/deno.jsonc index 473a0243..b70a86ce 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -5,7 +5,7 @@ }, "tasks": { // runs this source checkout, args will be passed - "run": "deno run --unstable-fs --unstable-ffi -A ./entrypoint.ts", + "run": "deno run --unstable-fs --unstable-ffi --unstable-process -A ./entrypoint.ts", // you can specify paths to specific tests if you need // follows is the ideal permissions lines, unfortunately deno considers making symlinks to require full read/write permissions for fuck knows why reasons @@ -19,7 +19,7 @@ //--------------------------------------- ci/cd/admin "coverage": "scripts/run-coverage.sh", "typecheck": "deno check ./entrypoint.ts", - "compile": "deno compile --lock=deno.lock --allow-read --allow-write --allow-net --allow-run --allow-env --allow-ffi --unstable-ffi --unstable-fs --output \"$INIT_CWD/pkgx\" ./entrypoint.ts" + "compile": "deno compile --lock=deno.lock --allow-read --allow-write --allow-net --allow-run --allow-env --allow-ffi --unstable-ffi --unstable-fs --unstable-process --output \"$INIT_CWD/pkgx\" ./entrypoint.ts" }, "pkgx": "deno~1.45", "lint": {