2017-06-11 05:29:03 -04:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2017-07-06 12:01:02 -04:00
|
|
|
if [ ! -f "./client/dist/index.html" ]; then
|
|
|
|
echo "client/dist/index.html does not exist, compile client files..."
|
2017-06-11 05:29:03 -04:00
|
|
|
npm run build:client
|
|
|
|
fi
|
|
|
|
|
|
|
|
npm run watch:server
|