shrub/sh/build-interface
Jared Tobin 7ef7028423
build: add :soto, always install dependencies [ci skip]
Ensures that the JS associated with :soto is built when running `make
interface`.

Additionally, adding `npm install` as a mandatory step for all Landscape
builds goes some way towards resolving #1664, though it's not a complete
fix.
2019-11-26 09:56:31 +08:00

25 lines
308 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
set +x