summaryrefslogtreecommitdiff
path: root/runtime/lib.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-03-08 00:32:11 +0000
committerGitHub <noreply@github.com>2024-03-08 01:32:11 +0100
commit2ed984ba3aa638c3f088ac1edc5c779c7d9195d1 (patch)
tree2240b8833d01f26109c140b295c1c297a3ef3461 /runtime/lib.rs
parent2d5b19277b483de64087822934d42fc3e09c1c24 (diff)
fix: respect unstable "temporal" configuration in config file (#22134)
Actual fix happened in https://github.com/denoland/deno/pull/22782, but this commit adds additional tests and cleans up V8 flags passed on init. Closes https://github.com/denoland/deno/issues/22123 Closes https://github.com/denoland/deno/issues/22560 Closes https://github.com/denoland/deno/issues/22557
Diffstat (limited to 'runtime/lib.rs')
-rw-r--r--runtime/lib.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/runtime/lib.rs b/runtime/lib.rs
index b63fd4134..ade10a9c6 100644
--- a/runtime/lib.rs
+++ b/runtime/lib.rs
@@ -87,12 +87,7 @@ pub static UNSTABLE_GRANULAR_FLAGS: &[(
"Enable unstable net APIs",
7,
),
- (
- "temporal",
- "Enable unstable Temporal API",
- // Not used in JS
- 8,
- ),
+ ("temporal", "Enable unstable Temporal API", 8),
(
"unsafe-proto",
"Enable unsafe __proto__ support. This is a security risk.",