v0.1.6 — Production Build Unblocked
The SpellSandbox panel — a developer-facing UI for testing spell mechanics — had its rendering
adapter and factory defined everywhere except the one place that mattered: the production entry
point. demo/src/main.ts was importing createSpellSandboxPanelFactory,
but the function didn't exist. build:prod failed.
The fix adds the factory and adapter following the same pattern as every other panel in the renderer. Two files, 44 lines. The Spell Sandbox now loads cleanly in production alongside the Spellbook panel it was modeled after.
Fixes
-
Fix — Build
Added missing
createSpellSandboxPanelFactory— production build was failing because the factory was imported but never defined. Added adapter config and factory following the SpellbookPanel pattern.