2019-07-25 01:14:16 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
cd pkg/interface/chat
|
2019-11-26 04:50:57 +03:00
|
|
|
npm install
|
2019-07-25 01:14:16 +03:00
|
|
|
gulp bundle-prod &
|
|
|
|
cd ../launch
|
2019-11-26 04:50:57 +03:00
|
|
|
npm install
|
2019-07-25 01:14:16 +03:00
|
|
|
gulp bundle-prod &
|
|
|
|
cd ../clock
|
2019-11-26 04:50:57 +03:00
|
|
|
npm install
|
2019-07-25 01:14:16 +03:00
|
|
|
gulp bundle-prod &
|
|
|
|
cd ../publish
|
2019-11-26 04:50:57 +03:00
|
|
|
npm install
|
2019-07-25 01:14:16 +03:00
|
|
|
gulp bundle-prod &
|
2019-11-26 04:50:57 +03:00
|
|
|
cd ../soto
|
|
|
|
npm install
|
2019-07-25 01:14:16 +03:00
|
|
|
gulp bundle-prod &
|
2019-11-26 04:50:57 +03:00
|
|
|
cd ../weather
|
|
|
|
npm install
|
|
|
|
gulp bundle-prod
|
2019-07-25 01:14:16 +03:00
|
|
|
|
|
|
|
set +x
|