From b72f0be27c382f2d4e5d272ce9ed2211af584d80 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Thu, 15 Feb 2024 10:20:17 +0530 Subject: chore: add DENO_FUTURE env var (#22318) Closes https://github.com/denoland/deno/issues/22315 ``` ~> DENO_FUTURE=1 target/debug/deno > globalThis.window undefined ``` --- cli/standalone/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'cli/standalone') diff --git a/cli/standalone/mod.rs b/cli/standalone/mod.rs index ecbb0be82..d1b90ecee 100644 --- a/cli/standalone/mod.rs +++ b/cli/standalone/mod.rs @@ -551,6 +551,7 @@ pub async fn run( create_coverage_collector: None, }, None, + false, // TODO(bartlomieju): temporarily disabled // metadata.disable_deprecated_api_warning, true, -- cgit v1.2.3