summaryrefslogtreecommitdiff
path: root/snapshots/build.rs
blob: df868591d6a466ae00043d56e184df02adb8a237 (plain)
1
2
3
4
5
6
7
8
9
10
// 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"));
}