diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-01-20 01:53:09 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-01-20 01:53:09 +0100 |
| commit | bc155f7abea6ee5155b6460d367a6797205db4fd (patch) | |
| tree | a2c55d96c493cf2b71bfc79539d4f8d0d8953392 /ui/client-scripts | |
| parent | 10736db63ad6d99e6cdce41920aa10dbeab02129 (diff) | |
| download | jellything-bc155f7abea6ee5155b6460d367a6797205db4fd.tar jellything-bc155f7abea6ee5155b6460d367a6797205db4fd.tar.bz2 jellything-bc155f7abea6ee5155b6460d367a6797205db4fd.tar.zst | |
started ui refactor
Diffstat (limited to 'ui/client-scripts')
| -rw-r--r-- | ui/client-scripts/build.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ui/client-scripts/build.rs b/ui/client-scripts/build.rs index 2f3826d..fa3fcaf 100644 --- a/ui/client-scripts/build.rs +++ b/ui/client-scripts/build.rs @@ -8,10 +8,7 @@ use std::process::{Command, Stdio}; fn main() { println!("cargo:rerun-if-changed=build.rs"); - for file in glob::glob("src/**/*.ts") - .unwrap() - .map(Result::unwrap) - { + for file in glob::glob("src/**/*.ts").unwrap().map(Result::unwrap) { println!("cargo:rerun-if-changed={}", file.to_str().unwrap()); } let outpath = std::env::var("OUT_DIR").unwrap(); @@ -22,6 +19,7 @@ fn main() { .arg("--target=esnext") .arg("--sourcemap") .arg("--format=esm") + .stdout(Stdio::piped()) .stderr(Stdio::piped()) .spawn() .unwrap(); |