buddyworks-cli
Version:
Command line tool for managing pipelines in Buddy Works
13 lines (8 loc) • 298 B
JavaScript
module.exports.command = 'pipeline <cmd>';
module.exports.aliases = 'pl';
module.exports.describe = 'pipeline list, inspect, operations';
module.exports.builder = (yargs) => {
this.yargs = yargs;
return yargs.commandDir('pipeline');
};
module.exports.handler = () => this.yargs.showHelp();