shrub/sh/build-interface
2020-02-14 17:06:20 -08:00

38 lines
399 B
Bash
Executable File

#!/usr/bin/env bash
set -ex
cd pkg/interface/chat
npm install
gulp bundle-prod &
cd ../launch
npm install
gulp bundle-prod &
cd ../clock
npm install
gulp bundle-prod &
cd ../publish
npm install
gulp bundle-prod &
cd ../soto
npm install
gulp bundle-prod &
cd ../weather
npm install
gulp bundle-prod
cd ../contacts
npm install
gulp bundle-prod
cd ../link
npm install
gulp bundle-prod
set +x