added single command to build interface files

This commit is contained in:
Isaac Visintainer 2019-07-24 15:14:16 -07:00
parent e92bbec269
commit 4f6e1fe229
2 changed files with 20 additions and 0 deletions

View File

@ -23,6 +23,9 @@ pills:
sh/update-brass-pill
sh/update-ivory-pill
interface:
sh/build-interface
clean:
rm -rf ./out ./work
rm -f result result-*

17
sh/build-interface Executable file
View File

@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -ex
cd pkg/interface/chat
gulp bundle-prod &
cd ../launch
gulp bundle-prod &
cd ../clock
gulp bundle-prod &
cd ../publish
gulp bundle-prod &
cd ../weather
gulp bundle-prod &
cd ../../../
set +x