From 708d060c3b60a8556cb7e59d42d8f8f6a5dec1f3 Mon Sep 17 00:00:00 2001 From: Sebastiaan Janssen Date: Fri, 8 Sep 2017 13:52:51 +0200 Subject: [PATCH] Fix up BuildBelle.bat --- build/BuildBelle.bat | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/build/BuildBelle.bat b/build/BuildBelle.bat index 579718bf70..f5906efb7d 100644 --- a/build/BuildBelle.bat +++ b/build/BuildBelle.bat @@ -49,21 +49,21 @@ FOR /f "delims=" %%A in ('dir "%nodeExtractFolder%\node*" /b') DO SET "nodePath= ECHO Change directory to %CD%\..\src\Umbraco.Web.UI.Client\ CD %CD%\..\src\Umbraco.Web.UI.Client\ - - ECHO Do npm install and the gulp build of Belle - - ECHO Clean npm cache - call npm cache clean --quiet - ECHO Installing gulp - call npm install -g gulp --quiet - ECHO Installing gulp cli - call npm install -g gulp-cli --quiet + ECHO Clean npm cache + call npm cache clean + ECHO Installing bower - call npm install -g bower --quiet - ECHO Doing npm install - call npm install --quiet - ECHO Executing gulp build + call npm install -g bower + + ECHO Installing gulp & gulp cli + call npm install -g gulp + call npm install -g gulp-cli + + ECHO Executing npm install + call npm install + + ECHO Do gulp build of Belle call gulp build --buildversion=%release% ECHO Move back to the build folder