mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-18 13:54:19 +01:00
12 lines
141 B
Bash
Executable File
12 lines
141 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
if [ -d "dist" ]; then
|
|
rm -rf dist
|
|
fi
|
|
|
|
pnpm lingui:compile
|
|
pnpm build:frontend
|
|
pnpm build:backend
|