diff --git a/Dockerfile b/Dockerfile index 64a92173a..30617c02e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ ENV NODE_ENV=production COPY package*.json post-install.js ./ RUN \ echo "*** Install npm packages ***" && \ - npm i --no-audit --no-fund --quiet --omit=dev && npm cache clean --force + npm i --no-audit --no-fund --loglevel=error --no-progress --omit=dev && npm cache clean --force # Bundle app source COPY . ./ diff --git a/Start.bat b/Start.bat index 8d1bfcdd7..148cda253 100644 --- a/Start.bat +++ b/Start.bat @@ -1,7 +1,7 @@ @echo off pushd %~dp0 set NODE_ENV=production -call npm install --no-audit --no-fund --quiet --omit=dev +call npm install --no-audit --no-fund --loglevel=error --no-progress --omit=dev node server.js %* pause popd diff --git a/UpdateAndStart.bat b/UpdateAndStart.bat index 110122cf2..55cee5ce9 100644 --- a/UpdateAndStart.bat +++ b/UpdateAndStart.bat @@ -12,7 +12,7 @@ if %errorlevel% neq 0 ( ) ) set NODE_ENV=production -call npm install --no-audit --no-fund --quiet --omit=dev +call npm install --no-audit --no-fund --loglevel=error --no-progress --omit=dev node server.js %* pause popd diff --git a/UpdateForkAndStart.bat b/UpdateForkAndStart.bat index 5052b9aa0..8bfae8609 100644 --- a/UpdateForkAndStart.bat +++ b/UpdateForkAndStart.bat @@ -42,7 +42,7 @@ if NOT "!AUTO_SWITCH!"=="" ( SET TARGET_BRANCH=release goto update ) - + echo Auto-switching defined to stay on current branch goto update ) @@ -95,7 +95,7 @@ if %errorlevel% neq 0 ( echo Installing npm packages and starting server set NODE_ENV=production -call npm install --no-audit --no-fund --quiet --omit=dev +call npm install --no-audit --no-fund --loglevel=error --no-progress --omit=dev node server.js %* :end diff --git a/start.sh b/start.sh index 9fbf8c7d7..d9a14e298 100755 --- a/start.sh +++ b/start.sh @@ -26,7 +26,7 @@ fi echo "Installing Node Modules..." export NODE_ENV=production -npm i --no-audit --no-fund --quiet --omit=dev +npm i --no-audit --no-fund --loglevel=error --no-progress --omit=dev echo "Entering SillyTavern..." node "server.js" "$@"