Add package.json for workspace setup and update frontend scripts to use Bun

This commit is contained in:
2025-11-30 14:13:06 -05:00
parent df72492e30
commit 25bbea01b4
3 changed files with 38 additions and 2 deletions

19
scripts/ci-build.sh Executable file
View File

@@ -0,0 +1,19 @@
!#/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
echo "Removing [frontend/dist]"
rm -rf frontend/dist
echo "Removing [server/dist]"
rm -rf server/dist
cd frontend
bun install
bun run ci-build:dist
cd server
bun install
bun run ci-build:dist