auto-backup: 2025-12-12 10:31:32 (22 files: +5 ~17 -0)

Generated by DSS Git Backup Hook
This commit is contained in:
2025-12-12 07:31:32 -03:00
parent 45d83f8402
commit b32cd99c0b
22 changed files with 1360 additions and 3159 deletions

View File

@@ -214,13 +214,20 @@ if ! python3 -c "import mcp" 2>/dev/null; then
fi
log_ok "Python venv ready"
# Check root node_modules (includes style-dictionary)
if [ ! -d "$DSS_ROOT/node_modules" ]; then
log_info "Installing root dependencies (style-dictionary)..."
cd "$DSS_ROOT" && npm install
fi
log_ok "Root dependencies ready"
# Check admin-ui node_modules
if [ ! -d "$DSS_ROOT/admin-ui/node_modules" ]; then
log_info "Installing admin-ui dependencies..."
cd "$DSS_ROOT/admin-ui" && npm install --legacy-peer-deps
cd "$DSS_ROOT"
fi
log_ok "Node dependencies ready"
log_ok "admin-ui dependencies ready"
# Build admin-ui
log_info "Building admin-ui..."