mirror of
https://github.com/langgenius/dify-agentbox.git
synced 2026-07-19 22:23:31 -04:00
15 lines
246 B
Bash
15 lines
246 B
Bash
#!/bin/bash
|
|
set -ex
|
|
|
|
echo "[agentbox] Step 4: install Node.js globals"
|
|
|
|
# Install Node.js global packages
|
|
npm install -g \
|
|
{% for pkg in nodejs_packages -%}
|
|
{{ pkg }} \
|
|
{% endfor %}
|
|
|
|
npm cache clean --force
|
|
|
|
echo "[agentbox] Step 4 complete"
|