File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ echo " [MeteorCLI - angularjs] Resetting project"
3
+ meteor reset
4
+ echo " [MeteorCLI - angularjs] Installing npm dependencies"
5
+ npm ci
6
+ exit_code=$? ; if [ ${exit_code} -gt 0 ]; then exit ${exit_code} ; fi
7
+ echo " [MeteorCLI - angularjs] Installing meteor dependencies"
8
+ meteor update --all-packages --allow-incompatible-update
9
+ exit_code=$? ; if [ ${exit_code} -gt 0 ]; then exit ${exit_code} ; fi
10
+ echo " [MeteorCLI - angularjs] Testing Dev"
11
+ npm run test:ci
12
+ exit_code=$? ; if [ ${exit_code} -gt 0 ]; then exit ${exit_code} ; fi
13
+ echo " [MeteorCLI - angularjs] Testing Production w/ Rollup"
14
+ ROLLUP=1 meteor build ./.meteor/build-rollup
15
+ exit_code=$? ; if [ ${exit_code} -gt 0 ]; then exit ${exit_code} ; fi
You can’t perform that action at this time.
0 commit comments