From de25b1903328c9aecc6c157e0fb82518a2a0d2ef Mon Sep 17 00:00:00 2001 From: Sterister Date: Sun, 3 May 2026 18:53:16 +0200 Subject: [PATCH] =?UTF-8?q?fix(publish):=20break=20recursion=20in=20publis?= =?UTF-8?q?h-shade.sh=20=E2=86=92=20publish-all.ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit publish-shade.sh used to call `bun run publish:all`, which in turn was wired to call publish-shade.sh (after the V4.0 cleanup). Point it directly at scripts/publish-all.ts so the interactive flow runs the TS publisher without re-entering itself. Verified: dry-run from publish-shade.sh now packs all 24 @shade/*@4.0.0 packages cleanly. Co-Authored-By: Claude Opus 4.7 (1M context) --- scripts/publish-shade.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/publish-shade.sh b/scripts/publish-shade.sh index ff3b001..6e1bf69 100755 --- a/scripts/publish-shade.sh +++ b/scripts/publish-shade.sh @@ -127,6 +127,6 @@ export GITEA_TOKEN="$TOKEN" cd "$SHADE_DIR" echo -echo "Kjører bun run publish:all i $SHADE_DIR" +echo "Kjører scripts/publish-all.ts i $SHADE_DIR" echo "----------------------------------------" -bun run publish:all +bun run scripts/publish-all.ts