urbit/sh/build-interface

42 lines
438 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
2020-05-27 03:39:41 +03:00
cd ../dbug
npm install
gulp bundle-prod
set +x