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