summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2023-11-06 18:03:48 -0700
committerGitHub <noreply@github.com>2023-11-07 01:03:48 +0000
commit50e4806a2db66be289aa123a0bfd8dd8688712ba (patch)
tree7cd801045c2a7a27ac9483bb2c6066675a03d9a1 /cli
parent777c142d39bf7af1f671239db7ba45e9a9fce48d (diff)
chore: bump deno_core (#21102)
Diffstat (limited to 'cli')
-rw-r--r--cli/build.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/build.rs b/cli/build.rs
index 16b31081e..3c56af599 100644
--- a/cli/build.rs
+++ b/cli/build.rs
@@ -288,7 +288,6 @@ mod ts {
build_libs,
path_dts,
)],
-
// NOTE(bartlomieju): Compressing the TSC snapshot in debug build took
// ~45s on M1 MacBook Pro; without compression it took ~1s.
// Thus we're not not using compressed snapshot, trading off
@@ -305,6 +304,7 @@ mod ts {
);
})),
with_runtime_cb: None,
+ skip_op_registration: false,
});
for path in output.files_loaded_during_snapshot {
println!("cargo:rerun-if-changed={}", path.display());
@@ -402,6 +402,7 @@ fn create_cli_snapshot(snapshot_path: PathBuf) -> CreateSnapshotOutput {
extensions,
compression_cb: None,
with_runtime_cb: None,
+ skip_op_registration: false,
})
}