Files
Mana-Loop/docs/circular-deps.txt
T
n8n-gitea ff3a268358
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m19s
fix: resolve all Priority 5 CRASH/BLOCKER issues (#51-#57)
- #51: Fix broken import path @/types/disciplines → @/lib/game/types/disciplines
- #52: Fix canProceedDiscipline() called with wrong arguments in discipline-slice.ts
- #53: Add local useState for activeAttunement tab filtering in DisciplinesTab
- #54: Make canProceedDiscipline() defensive when gameState is undefined
- #57: Remove stale CraftingTab export from game/index.ts
- Refactored DisciplineCard to use Zustand selector subscriptions properly
- Added DisciplinePerk type import to discipline-math.ts
2026-05-18 17:51:06 +02:00

11 lines
468 B
Plaintext

# Circular Dependencies
Generated: 2026-05-18T13:14:04.833Z
Found: 1 circular chain(s) — these MUST be fixed before modifying involved files.
1. Processed 123 files (1.2s) (29 warnings)
## How to fix
1. Identify which import in the chain can be extracted to a shared types/utils file.
2. Move the shared type or function there.
3. Both files import from the new shared module instead of each other.
4. Run: bunx madge --circular src/lib/game (should return clean)