b966f20fdb
Co-authored-by: Gergő Jedlicska <gergo@jedlicska.com>
11 lines
264 B
JavaScript
11 lines
264 B
JavaScript
/** @type {import('yargs').CommandModule} */
|
|
const command = {
|
|
command: 'migrate',
|
|
describe: 'Migration specific commands',
|
|
builder(yargs) {
|
|
return yargs.commandDir('migrate', { extensions: ['js', 'ts'] }).demandCommand()
|
|
}
|
|
}
|
|
|
|
module.exports = command
|