Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 1 | |
| 2 | rem nvmw use v0.12.4 |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 3 | echo "configure proxy for ATT" |
| 4 | call npm config set proxy http://one.proxy.att.com:8080 |
| 5 | |
| 6 | echo "npm cache clean" |
| 7 | call npm cache clean |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 8 | |
| 9 | echo "npm install" |
| 10 | call npm install |
| 11 | |
| 12 | if %errorlevel% NEQ 0 GOTO BAD_EXIT |
| 13 | |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 14 | echo "npm run build:prod" |
| 15 | npm run build:prod |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 16 | |
| 17 | if %errorlevel% NEQ 0 GOTO BAD_EXIT |
| 18 | |
| 19 | GOTO SMOOTH |
| 20 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 21 | :BAD_EXIT |
| 22 | echo BOO |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 23 | exit /b 1 |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 24 | |
| 25 | |
| 26 | :SMOOTH |
| 27 | echo "OK." |
| 28 | exit /b 0 |