Silence deprecation warnings in default startup scripts Closes #2876

15363a8d69cf83d84d8cb2e5f1c70216353f7782

Cohee <18619528+Cohee1207@users.noreply.github.com>

5 files changed, +5 -5Showing whitespace changes
Dockerfile+1 -1
@@ -19,7 +19,7 @@ ENV NODE_ENV=production
1919COPY package*.json post-install.js ./
2020RUN \
2121 echo "*** Install npm packages ***" && \
2222 npm i --no-audit --no-fund --quietloglevel=error --no-progress --omit=dev && npm cache clean --force
2323
2424# Bundle app source
2525COPY . ./
Start.bat+1 -1
@@ -1,7 +1,7 @@
11@echo off
22pushd %~dp0
33set NODE_ENV=production
44call npm install --no-audit --no-fund --quietloglevel=error --no-progress --omit=dev
55node server.js %*
66pause
77popd
UpdateAndStart.bat+1 -1
@@ -12,7 +12,7 @@ if %errorlevel% neq 0 (
1212 )
1313)
1414set NODE_ENV=production
1515call npm install --no-audit --no-fund --quietloglevel=error --no-progress --omit=dev
1616node server.js %*
1717pause
1818popd
UpdateForkAndStart.bat+1 -1
@@ -95,7 +95,7 @@ if %errorlevel% neq 0 (
9595
9696echo Installing npm packages and starting server
9797set NODE_ENV=production
9898call npm install --no-audit --no-fund --quietloglevel=error --no-progress --omit=dev
9999node server.js %*
100100
101101:end
start.sh+1 -1
@@ -26,7 +26,7 @@ fi
2626
2727echo "Installing Node Modules..."
2828export NODE_ENV=production
2929npm i --no-audit --no-fund --quietloglevel=error --no-progress --omit=dev
3030
3131echo "Entering SillyTavern..."
3232node "server.js" "$@"