From 8890002faeae2fc54f79a45d903a190ad208c2ba Mon Sep 17 00:00:00 2001 From: MickLesk Date: Wed, 27 May 2026 16:15:45 +0200 Subject: [PATCH] fix: remove package-lock.json before building frontend --- install/bunkerm-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install/bunkerm-install.sh b/install/bunkerm-install.sh index 86a1f78b..c9412e55 100644 --- a/install/bunkerm-install.sh +++ b/install/bunkerm-install.sh @@ -78,6 +78,7 @@ $STD /opt/venv/bin/pip install --no-cache-dir \ msg_ok "Set up Python Environment" msg_info "Building Frontend" +rm -f /opt/bunkerm/package-lock.json cd /opt/bunkerm/frontend export NODE_OPTIONS="--max-old-space-size=4096" NODE_ENV=development $STD npm ci