summaryrefslogtreecommitdiff
path: root/tools/run
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2025-05-27 01:45:41 -0400
committerOwen Jacobson <owen@grimoire.ca>2025-05-27 01:45:41 -0400
commit4396c912771f136f7d397a67f247c81532520b85 (patch)
tree9a8e2f7794e10078482df394e96c25183cd65c4f /tools/run
parent79d3598282fd573931e7cb14e4d3e54aad7c943c (diff)
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.
Diffstat (limited to 'tools/run')
-rwxr-xr-xtools/run2
1 files changed, 1 insertions, 1 deletions
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[@]}"