Revert "refactor(snapshots): to their own crate (#14794)" (#15076)

This reverts commit fd5a12d7e2.
This commit is contained in:
Bartek Iwańczuk 2022-07-05 00:12:41 +02:00 committed by GitHub
parent 06934db883
commit a919a5dd11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 674 additions and 740 deletions

View file

@ -2618,7 +2618,7 @@ fn op_script_version(
fn js_runtime(performance: Arc<Performance>) -> JsRuntime {
JsRuntime::new(RuntimeOptions {
extensions: vec![init_extension(performance)],
startup_snapshot: Some(deno_snapshots::tsc_snapshot()),
startup_snapshot: Some(tsc::compiler_snapshot()),
..Default::default()
})
}