mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 10:07:54 -05:00
43a52feebd
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
10 lines
356 B
Rust
10 lines
356 B
Rust
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
|
|
|
mod build_runtime;
|
|
mod build_tsc;
|
|
|
|
fn main() {
|
|
let out_dir = std::path::PathBuf::from(std::env::var_os("OUT_DIR").unwrap());
|
|
build_runtime::create_runtime_snapshot(&out_dir.join("CLI_SNAPSHOT.bin"));
|
|
build_tsc::create_tsc_snapshot(&out_dir.join("COMPILER_SNAPSHOT.bin"));
|
|
}
|