diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2023-08-06 00:00:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-05 23:00:38 +0000 |
commit | b96f28306490a56aac91b8ef06b35ebdc7f41b63 (patch) | |
tree | 742499afe4b3f4b82f125fc7785fb46632fea22f /cli/build.rs | |
parent | 85a2b281f566d3404d23852ae29d4a75d020dd5e (diff) |
refactor: remove snapshot_module_load_cb (#20043)
Diffstat (limited to 'cli/build.rs')
-rw-r--r-- | cli/build.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cli/build.rs b/cli/build.rs index 9860412a1..ecf0d3cbe 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -284,7 +284,6 @@ mod ts { .expect("snapshot compression failed"), ); })), - snapshot_module_load_cb: None, with_runtime_cb: None, }); for path in output.files_loaded_during_snapshot { @@ -377,7 +376,6 @@ fn create_cli_snapshot(snapshot_path: PathBuf) -> CreateSnapshotOutput { startup_snapshot: Some(deno_runtime::js::deno_isolate_init()), extensions, compression_cb: None, - snapshot_module_load_cb: None, with_runtime_cb: None, }) } |