themes-wordpress/blockbase/rebuild-child-themes.sh
alaczek 02a8c0b1cb
Payton: Initial commit. (#4863)
* Payton: Initial commit.

* change newtheme to payton

* add payton as a child of blockbase

Co-authored-by: Ben Dwyer <ben@scruffian.com>
2021-10-19 11:13:02 +01:00

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