Skip to content

v0.15.1

Compare
Choose a tag to compare
@DenisCarriere DenisCarriere released this 27 Feb 16:19
· 4 commits to main since this release
ffa82d7

What's Changed

// Setup CLI using Commander
const program = commander.program(pkg);
const command = commander.run(program, pkg, {http: false, metrics: true});
  • include addRunOptions to customize place as root command
const program = commander.program(pkg);
const command = commander.addRunOptions(program, pkg, {metrics: false, http: false});
  • make list command opt-in
const program = commander.program(pkg);
const command = commander.list(program);

Full Changelog: v0.15.0...v0.15.1