diff options
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. |