🐛 fix(mana-games): clean dist before Astro build

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 <noreply@anthropic.com>
This commit is contained in:
Wuesteon 2025-12-03 02:38:38 +01:00
parent 8cdb950cad
commit 09477e0aae

View file

@ -5,7 +5,7 @@
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"build": "rm -rf dist && astro build",
"preview": "astro preview",
"astro": "astro"
},