mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
ci: move gen folder out of src
This commit is contained in:
parent
86bac80040
commit
b4923b2b81
5 changed files with 4 additions and 1 deletions
|
@ -2,6 +2,7 @@ use std::process::Command;
|
|||
|
||||
fn main() {
|
||||
println!("cargo:rerun-if-changed=interpreter.ts");
|
||||
|
||||
match Command::new("tsc").spawn() {
|
||||
Ok(_) => println!("Was spawned :)"),
|
||||
Err(e) => {
|
||||
|
|
|
@ -1 +1 @@
|
|||
pub static INTERPRTER_JS: &str = include_str!("../interpreter.js");
|
||||
pub static INTERPRTER_JS: &str = include_str!("../gen/interpreter.js");
|
||||
|
|
|
@ -8,6 +8,8 @@
|
|||
"es6",
|
||||
"dom"
|
||||
],
|
||||
"rootDir": "src",
|
||||
"strict": true,
|
||||
"outDir": "gen",
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue