From bb26d5c255c12419fc2656fd53fb1c39fdad5a65 Mon Sep 17 00:00:00 2001 From: lordlogo2002 Date: Sat, 19 Jul 2025 23:24:46 +0200 Subject: [PATCH] fix: update build script to check for dist/index.jsx instead of dist/index.js --- push | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/push b/push index 506421b..109f34f 100755 --- a/push +++ b/push @@ -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