chore(deps): migrate vite from v7 to v8

This commit is contained in:
Acbox
2026-03-21 19:50:36 +08:00
parent e6ef0c9ad6
commit 91e5e44509
8 changed files with 529 additions and 267 deletions
+7 -3
View File
@@ -15,13 +15,17 @@ PID_GO=$!
sh "$SCRIPT_DIR/check-go-test" &
PID_GO_TEST=$!
sh "$SCRIPT_DIR/check-pnpm" &
PID_PNPM=$!
sh "$SCRIPT_DIR/check-ts" &
PID_TS=$!
sh "$SCRIPT_DIR/check-web" &
PID_WEB=$!
FAIL=0
wait "$PID_GO" || FAIL=1
wait "$PID_GO_TEST" || FAIL=1
wait "$PID_PNPM" || FAIL=1
wait "$PID_TS" || FAIL=1
wait "$PID_WEB" || FAIL=1
[ "$FAIL" -eq 0 ] || exit 1