urbit/sh/build-interface

38 lines
397 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
set -ex
cd pkg/interface/chat
npm install
gulp bundle-prod &
2020-02-15 04:06:20 +03:00
cd ../launch
npm install
gulp bundle-prod &
2020-02-15 04:06:20 +03:00
cd ../clock
npm install
gulp bundle-prod &
2020-02-15 04:06:20 +03:00
cd ../publish
npm install
gulp bundle-prod &
2020-02-15 04:06:20 +03:00
cd ../soto
npm install
gulp bundle-prod &
2020-02-15 04:06:20 +03:00
cd ../weather
npm install
gulp bundle-prod
cd ../groups
2020-02-15 04:06:20 +03:00
npm install
gulp bundle-prod
cd ../link
npm install
gulp bundle-prod
set +x