14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
import { noop } from 'lodash'
|
|
import { CommandModule } from 'yargs'
|
|
|
|
const command: CommandModule = {
|
|
command: 'bull',
|
|
describe: 'Bull MQ related activities',
|
|
builder(yargs) {
|
|
return yargs.commandDir('bull', { extensions: ['js', 'ts'] }).demandCommand()
|
|
},
|
|
handler: noop
|
|
}
|
|
|
|
export = command
|