Files
Mana-Loop/docs/circular-deps.txt
T
n8n-gitea a9918e83a6
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m18s
fix: add missing enchantment effects for rotTouch, soulRend, master, and legendary spells
- Add spell_rotTouch to BASIC_SPELL_EFFECTS (death element Tier 1)
- Add spell_soulRend to TIER2_SPELL_EFFECTS (death element Tier 2)
- Add spell_cosmicStorm, spell_heavenLight, spell_oblivion, spell_deathMark to TIER3_SPELL_EFFECTS (master spells)
- Create legendary-spells.ts with spell_stellarNova, spell_voidCollapse, spell_crystalShatter (legendary spells)
- Update spell-effects/index.ts to include LEGENDARY_SPELL_EFFECTS in SPELL_EFFECTS

Closes #41
2026-05-18 20:30:46 +02:00

13 lines
574 B
Plaintext

# Circular Dependencies
Generated: 2026-05-18T18:09:58.620Z
Found: 3 circular chain(s) — these MUST be fixed before modifying involved files.
1. Processed 123 files (1.3s) (29 warnings)
2. 1) data/equipment/index.ts > data/equipment/utils.ts
3. 2) data/golems/index.ts > data/golems/utils.ts
## 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)