2024-01-01 11:23:46 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
version=$(cat VERSION)
|
2024-02-24 17:53:27 +00:00
|
|
|
pwd
|
2024-01-01 11:23:46 +00:00
|
|
|
|
2024-02-24 17:53:27 +00:00
|
|
|
while IFS= read -r theme; do
|
2024-01-01 11:23:46 +00:00
|
|
|
echo "Building theme: $theme"
|
2024-02-24 18:07:34 +00:00
|
|
|
rm -r build/$theme
|
2024-02-24 17:53:27 +00:00
|
|
|
cd "$theme"
|
2024-01-01 11:23:46 +00:00
|
|
|
npm install
|
|
|
|
DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$version npm run build
|
|
|
|
cd ..
|
2024-02-24 17:53:27 +00:00
|
|
|
done < THEMES
|