fix: update build script to check for dist/index.jsx instead of dist/index.js

This commit is contained in:
Chipperfluff 2025-07-19 23:24:46 +02:00
parent 78ab32c808
commit bb26d5c255

2
push
View File

@ -38,7 +38,7 @@ rm -rf dist
npx --yes tsc
# ✅ Confirm output exists
if [ ! -f dist/index.js ]; then
if [ ! -f dist/index.jsx ]; then
echo "❌ ERROR: Build failed. dist/index.js not found."
exit 1
fi