Bundle brainstorm server dependencies instead of requiring npm install

Vendor node_modules into the repo so the brainstorm server works
immediately on fresh plugin installs without needing npm at runtime.
This commit is contained in:
Jesse Vincent
2026-03-09 21:36:37 -07:00
parent 5e2a89e985
commit 7446c842d8
722 changed files with 83997 additions and 5 deletions

View File

@@ -88,11 +88,6 @@ fi
cd "$SCRIPT_DIR"
# Auto-install dependencies if missing
if [[ ! -d "node_modules" ]]; then
npm install --production --no-fund --no-audit 2>&1 | tail -1 >&2
fi
# Foreground mode for environments that reap detached/background processes.
if [[ "$FOREGROUND" == "true" ]]; then
echo "$$" > "$PID_FILE"