mirror of
https://github.com/urbit/shrub.git
synced 2024-11-24 13:06:09 +03:00
7ef7028423
Ensures that the JS associated with :soto is built when running `make interface`. Additionally, adding `npm install` as a mandatory step for all Landscape builds goes some way towards resolving #1664, though it's not a complete fix.
25 lines
308 B
Bash
Executable File
25 lines
308 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
|
|
|
|
set +x
|