mirror of
https://github.com/urbit/shrub.git
synced 2024-11-23 20:26:54 +03:00
build: add :soto, always install dependencies [ci skip]
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.
This commit is contained in:
parent
fad9fcb16b
commit
7ef7028423
@ -3,15 +3,22 @@
|
||||
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
|
||||
gulp bundle-prod &
|
||||
cd ../../../
|
||||
npm install
|
||||
gulp bundle-prod
|
||||
|
||||
set +x
|
||||
|
Loading…
Reference in New Issue
Block a user