build.rs 232 B

1234567
  1. fn main() {
  2. // If any TS files change, re-run the build script
  3. lazy_js_bundle::LazyTypeScriptBindings::new()
  4. .with_watching("./src/ts")
  5. .with_binding("./src/ts/eval.ts", "./src/js/eval.js")
  6. .run();
  7. }