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 | |
| parent | 55137c9db4ed7226a6a68256c3cb9fdad7ad7c83 (diff) | |
refactor: remove DENO_FUTURE (#25314)
Diffstat (limited to 'cli/standalone')
| -rw-r--r-- | cli/standalone/binary.rs | 1 | ||||
| -rw-r--r-- | cli/standalone/mod.rs | 18 |
2 files changed, 8 insertions, 11 deletions
diff --git a/cli/standalone/binary.rs b/cli/standalone/binary.rs index d80f8a969..9d2c0781a 100644 --- a/cli/standalone/binary.rs +++ b/cli/standalone/binary.rs @@ -629,7 +629,6 @@ impl<'a> DenoCompileBinaryWriter<'a> { unstable_config: UnstableConfig { legacy_flag_enabled: cli_options.legacy_unstable_flag(), bare_node_builtins: cli_options.unstable_bare_node_builtins(), - byonm: cli_options.use_byonm(), sloppy_imports: cli_options.unstable_sloppy_imports(), features: cli_options.unstable_features(), }, 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. |
