11 lines
234 B
JavaScript
11 lines
234 B
JavaScript
/** @type {import('yargs').CommandModule} */
|
|
const command = {
|
|
command: 'migrate',
|
|
describe: 'Migration specific commands',
|
|
builder(yargs) {
|
|
return yargs.commandDir('migrate').demandCommand()
|
|
}
|
|
}
|
|
|
|
module.exports = command
|