Added build script

This commit is contained in:
Jake Howard 2015-12-19 21:32:22 +00:00
parent 7b97565fa9
commit 3c7bb99256

15
scripts/build Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -e
echo ">> Installing NPM Packages..."
npm install
echo ">> Installing cordova plugins..."
cordova platform add android
echo ">> Building Application source..."
npm run build
echo ">> Compiling Application..."
cordova build android