diff options
author | Michael Lando <ml636r@att.com> | 2017-06-09 03:19:04 +0300 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2017-06-09 03:19:04 +0300 |
commit | ed64b5edff15e702493df21aa3230b81593e6133 (patch) | |
tree | a4cb01fdaccc34930a8db403a3097c0d1e40914b /catalog-ui/build_catalog_ui.bat | |
parent | 280f8015d06af1f41a3ef12e8300801c7a5e0d54 (diff) |
[SDC-29] catalog 1707 rebase commit.
Change-Id: I43c3dc5cf44abf5da817649bc738938a3e8388c1
Signed-off-by: Michael Lando <ml636r@att.com>
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 |