Added build script
This commit is contained in:
parent
7b97565fa9
commit
3c7bb99256
1 changed files with 15 additions and 0 deletions
15
scripts/build
Executable file
15
scripts/build
Executable 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
|
Reference in a new issue