blob: b00ee0875b8b45c4362f750a4e751d45ea60c716 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
rem nvmw use v0.12.4
echo "configure proxy for ATT"
call npm config set proxy http://one.proxy.att.com:8080
echo "npm cache clean"
call npm cache clean
echo "npm install"
call npm install
if %errorlevel% NEQ 0 GOTO BAD_EXIT
echo "npm run build:prod"
npm run build:prod
if %errorlevel% NEQ 0 GOTO BAD_EXIT
GOTO SMOOTH
:BAD_EXIT
echo BOO
exit /b 1
:SMOOTH
echo "OK."
exit /b 0
|