1
0
forked from Proxmox/ProxmoxVE

Use npm install --no-audit --progress=false

Replace npm install --legacy-peer-deps with npm install --no-audit --progress=false in frontend build scripts (ct/dispatcharr.sh and install/dispatcharr-install.sh). This disables npm audit and progress output during automated builds while keeping the subsequent npm run build step unchanged.
This commit is contained in:
CanbiZ (MickLesk)
2026-03-19 07:05:12 +01:00
parent 2a7b6c8d86
commit 29aa2ff170
2 changed files with 2 additions and 2 deletions

View File

@@ -110,7 +110,7 @@ function update_script() {
msg_info "Building Frontend"
cd /opt/dispatcharr/frontend
$STD npm install --legacy-peer-deps
$STD npm install --no-audit --progress=false
$STD npm run build
msg_ok "Built Frontend"

View File

@@ -66,7 +66,7 @@ CELERY_BROKER_URL=redis://localhost:6379/0
DJANGO_SECRET_KEY=$DJANGO_SECRET
EOF
cd /opt/dispatcharr/frontend
$STD npm install --legacy-peer-deps
$STD npm install --no-audit --progress=false
$STD npm run build
msg_ok "Configured Dispatcharr"