diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-08-30 17:58:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-30 21:58:24 +0000 |
commit | f891e73bbfc4a8f4f24039dd046c8d3de80e2c56 (patch) | |
tree | d3ca7e1163550cc7fee6d523269d6a3636218da0 /cli/standalone/mod.rs | |
parent | 55137c9db4ed7226a6a68256c3cb9fdad7ad7c83 (diff) |
refactor: remove DENO_FUTURE (#25314)
Diffstat (limited to 'cli/standalone/mod.rs')
-rw-r--r-- | cli/standalone/mod.rs | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/cli/standalone/mod.rs b/cli/standalone/mod.rs index 90b2b8a28..4c199a7d5 100644 --- a/cli/standalone/mod.rs +++ b/cli/standalone/mod.rs @@ -706,6 +706,8 @@ pub async fn run( None, None, feature_checker, + // Code cache is not supported for standalone binary yet. + None, CliMainWorkerOptions { argv: metadata.argv, log_level: WorkerLogLevel::Info, @@ -732,17 +734,13 @@ pub async fn run( unstable: metadata.unstable_config.legacy_flag_enabled, create_hmr_runner: None, create_coverage_collector: None, + node_ipc: None, + serve_port: None, + serve_host: None, + // TODO(bartlomieju): temporarily disabled + disable_deprecated_api_warning: true, + verbose_deprecated_api_warning: false, }, - None, - None, - None, - false, - // TODO(bartlomieju): temporarily disabled - // metadata.disable_deprecated_api_warning, - true, - false, - // Code cache is not supported for standalone binary yet. - None, ); // Initialize v8 once from the main thread. |