mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-14 04:19:22 +03:00
38 lines
397 B
Bash
Executable File
38 lines
397 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
cd pkg/interface/chat
|
|
npm install
|
|
gulp bundle-prod &
|
|
|
|
cd ../launch
|
|
npm install
|
|
gulp bundle-prod &
|
|
|
|
cd ../clock
|
|
npm install
|
|
gulp bundle-prod &
|
|
|
|
cd ../publish
|
|
npm install
|
|
gulp bundle-prod &
|
|
|
|
cd ../soto
|
|
npm install
|
|
gulp bundle-prod &
|
|
|
|
cd ../weather
|
|
npm install
|
|
gulp bundle-prod
|
|
|
|
cd ../groups
|
|
npm install
|
|
gulp bundle-prod
|
|
|
|
cd ../link
|
|
npm install
|
|
gulp bundle-prod
|
|
|
|
set +x
|