v0.15.1
What's Changed
- make http & metrics optional commands by @DenisCarriere in #26
// 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