14 lines
244 B
Bash
14 lines
244 B
Bash
#!/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
|