summaryrefslogtreecommitdiff
path: root/cli/main.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2022-07-05 00:12:41 +0200
committerGitHub <noreply@github.com>2022-07-05 00:12:41 +0200
commita919a5dd1167b79f267cbed7312b3a7d296d429f (patch)
tree73b7b1a8b5daef3ab7ad9c07423c4907a23a0269 /cli/main.rs
parent06934db883e9ae64c7603f98051676cbcf90994f (diff)
Revert "refactor(snapshots): to their own crate (#14794)" (#15076)
This reverts commit fd5a12d7e25dc53238e2bbcffe970e646c1035f3.
Diffstat (limited to 'cli/main.rs')
-rw-r--r--cli/main.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/cli/main.rs b/cli/main.rs
index 2747d763c..18eb58ff5 100644
--- a/cli/main.rs
+++ b/cli/main.rs
@@ -181,7 +181,6 @@ fn create_web_worker_callback(
shared_array_buffer_store: Some(ps.shared_array_buffer_store.clone()),
compiled_wasm_module_store: Some(ps.compiled_wasm_module_store.clone()),
stdio: stdio.clone(),
- startup_snapshot: Some(deno_snapshots::cli_snapshot()),
};
WebWorker::bootstrap_from_options(
@@ -263,7 +262,6 @@ pub fn create_main_worker(
shared_array_buffer_store: Some(ps.shared_array_buffer_store.clone()),
compiled_wasm_module_store: Some(ps.compiled_wasm_module_store.clone()),
stdio,
- startup_snapshot: Some(deno_snapshots::cli_snapshot()),
};
MainWorker::bootstrap_from_options(main_module, permissions, options)