diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-17 09:43:36 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-16 23:43:36 +0000 |
commit | 01b5dfd9ea927d41492fde352cd79f7b972439b9 (patch) | |
tree | cd0d6693e0f361cb707c5b75f9fa7d0a7acdb844 /cli/standalone | |
parent | b0525edd6fb2fa414407ec73c981051d692d1c26 (diff) |
chore: remove `warnOnDeprecatedApi()` (#25673)
Diffstat (limited to 'cli/standalone')
-rw-r--r-- | cli/standalone/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/standalone/mod.rs b/cli/standalone/mod.rs index 40968a8c4..1b1635d59 100644 --- a/cli/standalone/mod.rs +++ b/cli/standalone/mod.rs @@ -745,7 +745,7 @@ pub async fn run( // Initialize v8 once from the main thread. v8_set_flags(construct_v8_flags(&[], &metadata.v8_flags, vec![])); - // TODO(bartlomieju): remove last argument in Deno 2. + // TODO(bartlomieju): remove last argument once Deploy no longer needs it deno_core::JsRuntime::init_platform(None, true); let mut worker = worker_factory |