lila/ui/build

13 lines
246 B
Plaintext
Raw Normal View History

2014-12-24 14:28:48 -07:00
#!/bin/sh
. bin/lilarc
target=${1-dev}
mkdir -p public/compiled
2015-12-25 03:41:45 -07:00
for app in insight editor puzzle round analyse lobby tournament tournamentSchedule opening simul perfStat; do
2014-12-24 14:28:48 -07:00
cd ui/$app
2016-01-06 04:05:21 -07:00
npm install --no-optional && gulp $target
2014-12-24 14:28:48 -07:00
cd -
done