From 4f6e1fe2296108a9a7fcadda366c953b5a375e41 Mon Sep 17 00:00:00 2001 From: Isaac Visintainer Date: Wed, 24 Jul 2019 15:14:16 -0700 Subject: [PATCH] added single command to build interface files --- Makefile | 3 +++ sh/build-interface | 17 +++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100755 sh/build-interface diff --git a/Makefile b/Makefile index 7469f3c3aa..6efade6af0 100644 --- a/Makefile +++ b/Makefile @@ -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-* diff --git a/sh/build-interface b/sh/build-interface new file mode 100755 index 0000000000..b522df5068 --- /dev/null +++ b/sh/build-interface @@ -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