Skip to content

Commit

Permalink
chore: bump deno_core (denoland#21102)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmastrac committed Nov 7, 2023
1 parent 777c142 commit 50e4806
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ repository = "https://github.com/denoland/deno"

[workspace.dependencies]
deno_ast = { version = "0.31.2", features = ["transpiling"] }
deno_core = { version = "0.225.0" }
deno_core = { version = "0.227.0" }

deno_runtime = { version = "0.130.0", path = "./runtime" }
napi_sym = { version = "0.52.0", path = "./cli/napi/sym" }
Expand Down
3 changes: 2 additions & 1 deletion cli/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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());
Expand Down Expand Up @@ -402,6 +402,7 @@ fn create_cli_snapshot(snapshot_path: PathBuf) -> CreateSnapshotOutput {
extensions,
compression_cb: None,
with_runtime_cb: None,
skip_op_registration: false,
})
}

Expand Down
1 change: 1 addition & 0 deletions runtime/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ mod startup_snapshot {
extensions,
compression_cb: None,
with_runtime_cb: None,
skip_op_registration: false,
});
for path in output.files_loaded_during_snapshot {
println!("cargo:rerun-if-changed={}", path.display());
Expand Down

0 comments on commit 50e4806

Please sign in to comment.