Compare commits

..

1 Commits

Author SHA1 Message Date
CanbiZ (MickLesk)
29aa2ff170 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.
2026-03-19 07:05:12 +01:00
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"