Releases: HormigaDev/miga-cli
Releases · HormigaDev/miga-cli
Miga CLI - v0.1.3
[0.1.3] — 2026-03-14
Fixed
- Relative import path resolution — fixed an issue where imported modules from
nested script directories (e.g.scripts/events/index.js) were resolving
incorrectly to./libsinstead of../libs. The compiler now correctly
calculates relative depth from thescriptsroot.
Miga CLI - v0.1.2
[0.1.2] — 2026-03-14
Fixed
- Module entry point resolution — the compiler now correctly respects the
entryfield from module manifests (e.g.index.ts) instead of inferring
the filename from the module name. This fixes imports for modules like
@miga/frameworkwhere the entry point isindex.tsbut the import path
was incorrectly rewritten toframework.js.
Miga CLI - v0.1.1
[0.1.1] — 2026-03-03
Fixed
- Scoped module support — the compiler's import rewriter now correctly handles
scoped module names (e.g.@miga/framework). Previously, the specifier was split
on the first/, causing@miga/frameworkto be misinterpreted as module@miga
with sub-pathframework. A newparse_module_specifier()function distinguishes
plain modules (bimap,bimap/utils) from scoped modules
(@miga/framework,@miga/framework/helpers), ensuring imports are rewritten to
the correct versioned path (e.g../libs/@miga/framework/v1.0.0/framework.js).
Miga CLI - v0.1.0
feat: improve CLI, init workflow and module handling