diff --git a/scripts/build b/scripts/build index 7e2f1d8..cbdf638 100755 --- a/scripts/build +++ b/scripts/build @@ -3,12 +3,12 @@ set -e echo ">> Installing NPM Packages..." -npm install - -echo ">> Building Application source..." 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 plugins..." diff --git a/scripts/runtests b/scripts/runtests index 5977f5e..4c647ab 100755 --- a/scripts/runtests +++ b/scripts/runtests @@ -6,4 +6,4 @@ echo ">> Compile application..." cordova build android echo ">> Lint JavaScript..." -npm run Lint +npm run lint