diff options
Diffstat (limited to 'catalog-ui/build_catalog_ui.bat')
-rw-r--r-- | catalog-ui/build_catalog_ui.bat | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/catalog-ui/build_catalog_ui.bat b/catalog-ui/build_catalog_ui.bat index 7a153e9ae7..b00ee0875b 100644 --- a/catalog-ui/build_catalog_ui.bat +++ b/catalog-ui/build_catalog_ui.bat @@ -1,27 +1,26 @@ 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 "bower install" -call bower install -if %errorlevel% NEQ 0 GOTO BAD_EXIT - - -echo "build --v" -grunt build --v +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 +exit /b 1 :SMOOTH |