refactor(core): group root modules into stable namespaces #556
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!556
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "refactor/root-module-layout"
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
The root
lua/forge/directory was still carrying 43 top-level modules, which made the filesystem harder to scan as an architectural map even though several of those files already belonged to obvious internal families.Solution
Group the action, ci, compose, format, log, pr, state, and surface families under stable namespace directories with
init.luafacades, update internal requires and specs to follow the new owning paths, and keep documented public module names such asrequire('forge.pr')andrequire('forge.format')stable while cutting thelua/forgeroot down to 20 top-level files.