2018-03-27 04:35:12 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -eu
|
2017-06-11 05:29:03 -04:00
|
|
|
|
2018-06-29 03:33:36 -04:00
|
|
|
if [ ! -f "./client/dist/en_US/index.html" ]; then
|
|
|
|
echo "client/dist/en_US/index.html does not exist, compile client files..."
|
2019-01-23 09:36:45 -05:00
|
|
|
npm run build:client -- --light
|
2017-06-11 05:29:03 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
npm run watch:server
|