fix: address pr comments

This commit is contained in:
Shirone
2026-01-12 18:41:56 +01:00
parent a0669d4262
commit f41a42010c
6 changed files with 158 additions and 36 deletions

View File

@@ -14,8 +14,12 @@ echo ""
# Install dependencies
echo "[1/1] Installing npm dependencies..."
if [ -f "package.json" ]; then
npm install
echo "Dependencies installed successfully!"
if npm install; then
echo "Dependencies installed successfully!"
else
echo "ERROR: npm install failed with exit code $?"
exit 1
fi
else
echo "No package.json found, skipping npm install"
fi