Skip to content

Releases: HormigaDev/miga-cli

Miga CLI - v0.1.3

14 Mar 13:08

Choose a tag to compare

[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 ./libs instead of ../libs. The compiler now correctly
    calculates relative depth from the scripts root.

Miga CLI - v0.1.2

14 Mar 12:15

Choose a tag to compare

[0.1.2] — 2026-03-14

Fixed

  • Module entry point resolution — the compiler now correctly respects the
    entry field from module manifests (e.g. index.ts) instead of inferring
    the filename from the module name. This fixes imports for modules like
    @miga/framework where the entry point is index.ts but the import path
    was incorrectly rewritten to framework.js.

Miga CLI - v0.1.1

03 Mar 18:44

Choose a tag to compare

[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/framework to be misinterpreted as module @miga
    with sub-path framework. A new parse_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

03 Mar 13:34

Choose a tag to compare

feat: improve CLI, init workflow and module handling