Skip to content

Commit

Permalink
Pass --unstable-process
Browse files Browse the repository at this point in the history
Fixes #1038
  • Loading branch information
mxcl committed Sep 19, 2024
1 parent c089b41 commit 031c28d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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": {
Expand Down

0 comments on commit 031c28d

Please sign in to comment.