This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
oriment/scripts/build

18 lines
397 B
Bash
Executable file

#!/usr/bin/env bash
set -e
echo ">> Installing NPM Packages..."
if [ -z "$IN_TEST" ]; then
npm install -g cordova ionic # CircleCI can't find it otherwise
fi
npm install
echo ">> Building Application source..."
npm run build
echo ">> Installing cordova platforms..."
cordova platform add android
echo ">> Installing cordova plugins..."
cordova plugin add cordova-plugin-device-orientation