baserow: allow remote npm dependency for xlsx under npm v12

This commit is contained in:
MickLesk
2026-09-04 15:01:28 +02:00
parent f8fb448ae2
commit 360383c9c8
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ function update_script() {
msg_info "Rebuilding Frontend"
cd /opt/baserow/web-frontend
$STD npm install
$STD npm install --allow-remote=all
$STD npm run build
msg_ok "Rebuilt Frontend"

View File

@@ -45,7 +45,7 @@ msg_ok "Installed Backend Dependencies"
msg_info "Building Frontend"
cd /opt/baserow/web-frontend
NODE_OPTIONS="--max-old-space-size=4096" $STD npm install --legacy-peer-deps
NODE_OPTIONS="--max-old-space-size=4096" $STD npm install --legacy-peer-deps --allow-remote=all
NODE_OPTIONS="--max-old-space-size=4096" $STD npm run build
msg_ok "Built Frontend"