Skip to content

Commit 031c28d

Browse files
committed
Pass --unstable-process
Fixes #1038
1 parent c089b41 commit 031c28d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deno.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
},
66
"tasks": {
77
// runs this source checkout, args will be passed
8-
"run": "deno run --unstable-fs --unstable-ffi -A ./entrypoint.ts",
8+
"run": "deno run --unstable-fs --unstable-ffi --unstable-process -A ./entrypoint.ts",
99

1010
// you can specify paths to specific tests if you need
1111
// 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 @@
1919
//--------------------------------------- ci/cd/admin
2020
"coverage": "scripts/run-coverage.sh",
2121
"typecheck": "deno check ./entrypoint.ts",
22-
"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"
22+
"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"
2323
},
2424
"pkgx": "deno~1.45",
2525
"lint": {

0 commit comments

Comments
 (0)