Files
relay-saas/web/build.sh
huangzhenpc cb7c48bfa7
Some checks failed
CI / Unit tests (push) Has been cancelled
CI / commit_lint (push) Has been cancelled
first commit: one-api base code + SAAS plan document
2025-12-29 22:52:27 +08:00

14 lines
255 B
Bash

#!/bin/sh
version=$(cat VERSION)
pwd
while IFS= read -r theme; do
echo "Building theme: $theme"
rm -r build/$theme
cd "$theme"
npm install
DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$version npm run build
cd ..
done < THEMES