refactor(core): remove internal forge facade indirection (#522) #534
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
fugitive
good first issue
help wanted
invalid
question
v0.1.0
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
barrettruth/forge.nvim!534
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "refactor/direct-module-deps-522"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
These runtime modules still called back through
require(forge)for config and formatting helpers, which kept the public facade acting as an internal service locator and left the direct-dependency refactor incomplete.Solution
Route the touched modules through
forge.configandforge.formatdirectly, and update the affected specs to stub those direct modules so the refactor stays covered.