one-api/web/build.sh
2024-12-20 23:27:00 +08:00

14 lines
255 B
Bash
Executable File

#!/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