02a8c0b1cb
* Payton: Initial commit. * change newtheme to payton * add payton as a child of blockbase Co-authored-by: Ben Dwyer <ben@scruffian.com>
10 lines
260 B
Bash
10 lines
260 B
Bash
#!/bin/bash
|
|
|
|
declare -a ChildThemes=( "geologist" "mayland-blocks" "payton" "quadrat" "russell" "seedlet-blocks" "skatepark" "videomaker" "zoologist" )
|
|
|
|
for child in ${ChildThemes[@]}; do
|
|
cd '../'${child}
|
|
echo 'Rebulding '${child}
|
|
npm i
|
|
npm run build
|
|
done
|