diff options
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/build-ui | 10 | ||||
| -rwxr-xr-x | tools/run | 2 | ||||
| -rwxr-xr-x | tools/run-frontend | 4 |
3 files changed, 3 insertions, 13 deletions
diff --git a/tools/build-ui b/tools/build-ui deleted file mode 100755 index ba8d016..0000000 --- a/tools/build-ui +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -e - -## tools/build-ui -## -## Builds the Svelte UI. - -cd "$(dirname "$0")/.." - -npm install -npm run build @@ -11,7 +11,7 @@ trap 'kill "${PIDS[@]}"' EXIT cargo run & PIDS+=($!) -npm run dev -- --host & +npx vite dev --host & PIDS+=($!) wait "${PIDS[@]}" diff --git a/tools/run-frontend b/tools/run-frontend index 14ff49c..ccb9bd4 100755 --- a/tools/run-frontend +++ b/tools/run-frontend @@ -3,8 +3,8 @@ ## tools/run-frontend [OPTIONS…] ## ## Runs a development server for the Pilcrow UI. Options are passed through to -## the `npm run dev` command. This is best combined with the `API_SERVER` +## the `npx vite dev` command. This is best combined with the `API_SERVER` ## environment variable, to configure the development server to connect to a ## running Pilcrow instance. -exec npm run dev -- --host "$@" +exec npx vite dev --host "$@" |
