diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-07-23 15:42:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-23 13:42:41 +0000 |
commit | a4e0f3ff8851771e91c14fd398d5956d9ae73bf3 (patch) | |
tree | 33944498f53f1a64fdb17159b28a3249506c8956 /cli/build.rs | |
parent | 4ef080cb85441d820f47c845b40213f297754f4c (diff) |
chore: update deno_core to 0.196.0 (#19897)
Co-authored-by: Matt Mastracci <matthew@mastracci.com>
Diffstat (limited to 'cli/build.rs')
-rw-r--r-- | cli/build.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/build.rs b/cli/build.rs index 9238096fe..a71692a31 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -285,6 +285,7 @@ mod ts { ); })), snapshot_module_load_cb: None, + with_runtime_cb: None, }); for path in output.files_loaded_during_snapshot { println!("cargo:rerun-if-changed={}", path.display()); @@ -377,6 +378,7 @@ fn create_cli_snapshot(snapshot_path: PathBuf) -> CreateSnapshotOutput { extensions, compression_cb: None, snapshot_module_load_cb: None, + with_runtime_cb: None, }) } |