10 lines
216 B
Bash
10 lines
216 B
Bash
#!/bin/bash
|
|
|
|
declare -a ChildThemes=( "mayland-blocks" "seedlet-blocks" "quadrat" "skatepark" "geologist" )
|
|
|
|
for child in ${ChildThemes[@]}; do
|
|
cd '../'${child}
|
|
echo 'Rebulding '${child}
|
|
npm i
|
|
npm run build
|
|
done
|