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/lib.rs | |
parent | 8ad25e86da30de65f9d00e08500dd49de7d7331e (diff) |
fix(cli): missing flag for `--unstable-process` (#24199)
Diffstat (limited to 'runtime/lib.rs')
-rw-r--r-- | runtime/lib.rs | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/runtime/lib.rs b/runtime/lib.rs index c92f5aea2..a729d88f7 100644 --- a/runtime/lib.rs +++ b/runtime/lib.rs @@ -90,23 +90,28 @@ pub static UNSTABLE_GRANULAR_FLAGS: &[( "Enable unstable net APIs", 7, ), - ("temporal", "Enable unstable Temporal API", 8), + ( + ops::process::UNSTABLE_FEATURE_NAME, + "Enable unstable process APIs", + 8, + ), + ("temporal", "Enable unstable Temporal API", 9), ( "unsafe-proto", "Enable unsafe __proto__ support. This is a security risk.", // This number is used directly in the JS code. Search // for "unstableIds" to see where it's used. - 9, + 10, ), ( deno_webgpu::UNSTABLE_FEATURE_NAME, "Enable unstable `WebGPU` API", - 10, + 11, ), ( ops::worker_host::UNSTABLE_FEATURE_NAME, "Enable unstable Web Worker APIs", - 11, + 12, ), ]; |