mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
chore(deps): migrate vite from v7 to v8
This commit is contained in:
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
export PATH="$HOME/.local/share/mise/shims:$HOME/.local/bin:$HOME/.npm-global/bin:/opt/homebrew/bin:/usr/local/bin:$PATH"
|
||||
|
||||
echo "Check TypeScript lint..."
|
||||
pnpm lint
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
export PATH="$HOME/.local/share/mise/shims:$HOME/.local/bin:$HOME/.npm-global/bin:/opt/homebrew/bin:/usr/local/bin:$PATH"
|
||||
|
||||
echo "Check lint..."
|
||||
pnpm lint:fix
|
||||
echo "Check Web build..."
|
||||
pnpm web:build
|
||||
+7
-3
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user