ai-gateway/web/build.sh

14 lines
244 B
Bash
Raw Normal View History

2024-01-01 11:23:46 +00:00
#!/bin/sh
version=$(cat VERSION)
themes=$(cat THEMES)
IFS=$'\n'
for theme in $themes; do
echo "Building theme: $theme"
cd $theme
npm install
DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$version npm run build
cd ..
done