Prevent writing package-lock.json in startup scripts

This commit is contained in:
Cohee
2025-12-02 10:26:35 +00:00
parent 765c76ea80
commit 560d15c5bb
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
@echo off
pushd %~dp0
set NODE_ENV=production
call npm install --no-audit --no-fund --loglevel=error --no-progress --omit=dev
call npm install --no-save --no-audit --no-fund --loglevel=error --no-progress --omit=dev
node server.js %*
pause
popd