diff options
author | Luca Casonato <hello@lcas.dev> | 2024-06-13 16:00:38 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-13 16:00:38 +0300 |
commit | abe9953829f0c5174ffd7668d9903785b7a7e4c9 (patch) | |
tree | 00816d36599ed00fe2db57a33d234f961895f8bf /runtime/js | |
parent | 8ad25e86da30de65f9d00e08500dd49de7d7331e (diff) |
fix(cli): missing flag for `--unstable-process` (#24199)
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/90_deno_ns.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index 2e13976a7..cf3e445c9 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -245,7 +245,6 @@ const denoNs = { gid: os.gid, uid: os.uid, Command: process.Command, - // TODO(bartlomieju): why is this exported? ChildProcess: process.ChildProcess, }; @@ -258,10 +257,11 @@ const unstableIds = { http: 5, kv: 6, net: 7, - temporal: 8, - unsafeProto: 9, - webgpu: 10, - workerOptions: 11, + process: 8, + temporal: 9, + unsafeProto: 10, + webgpu: 11, + workerOptions: 12, }; const denoNsUnstableById = { __proto__: null }; |