From 09477e0aae83fac9ee8c1cf4266f1849e4c8be7e Mon Sep 17 00:00:00 2001 From: Wuesteon Date: Wed, 3 Dec 2025 02:38:38 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(mana-games):=20clean=20dist?= =?UTF-8?q?=20before=20Astro=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes race condition in CI where stale dist/renderers.mjs causes build failures. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- games/mana-games/apps/web/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/mana-games/apps/web/package.json b/games/mana-games/apps/web/package.json index 1460c8e55..c4b2f11d4 100644 --- a/games/mana-games/apps/web/package.json +++ b/games/mana-games/apps/web/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "dev": "astro dev", - "build": "astro build", + "build": "rm -rf dist && astro build", "preview": "astro preview", "astro": "astro" },