From 1ef617e8f3d48098e69e222b6eb6fe981aeca1c3 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Sun, 12 Nov 2023 20:52:59 -0800 Subject: perf: lazy bootstrap options - first pass (#21164) Move most runtime options to be lazily loaded. Constant options will be covered in a different PR. Towards https://github.com/denoland/deno/issues/21133 --- cli/build.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'cli/build.rs') diff --git a/cli/build.rs b/cli/build.rs index 1c27e6ebb..4fe3a5d17 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -406,6 +406,7 @@ fn create_cli_snapshot(snapshot_path: PathBuf) -> CreateSnapshotOutput { deno_runtime::ops::signal::deno_signal::init_ops(), deno_runtime::ops::tty::deno_tty::init_ops(), deno_runtime::ops::http::deno_http_runtime::init_ops(), + deno_runtime::ops::bootstrap::deno_bootstrap::init_ops(), cli::init_ops_and_esm(), // NOTE: This needs to be init_ops_and_esm! ]; -- cgit v1.2.3