Skip to content

v1.7.4

Compare
Choose a tag to compare
@lukeed lukeed released this 28 Sep 18:47
· 8 commits to master since this release

Patches

  • Handle equal-length aliases for sub-commands: 6a08885
    Previously, a subcommand only worked correctly if its alias had fewer segments:

    sade('git')
      .command('remote add <name> <url>')
      .alias('ra', 'remote new')
      // ...
    
    // BEFORE: Only `ra` worked
    // AFTER: Both `ra` and `remote new` work
  • (perf) Faster command parsing: 6a08885
    Fewer for-loops to determine command alises.

Chores