From 4396c912771f136f7d397a67f247c81532520b85 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Tue, 27 May 2025 01:45:41 -0400 Subject: Call `vite` directly to build the frontend. Calling through `npm` wasn't adding anything other than complexity, and it made it somewhat harder to follow what tools did what. I'm also pretty sure `tools/build-ui` was totally unused. --- tools/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/run') diff --git a/tools/run b/tools/run index 88262c6..8560c31 100755 --- a/tools/run +++ b/tools/run @@ -11,7 +11,7 @@ trap 'kill "${PIDS[@]}"' EXIT cargo run & PIDS+=($!) -npm run dev -- --host & +npx vite dev --host & PIDS+=($!) wait "${PIDS[@]}" -- cgit v1.2.3