11 lines
219 B
JavaScript
11 lines
219 B
JavaScript
/** @type {import('yargs').CommandModule} */
|
|
const command = {
|
|
command: 'db',
|
|
describe: 'DB & Migration actions',
|
|
builder(yargs) {
|
|
return yargs.commandDir('db').demandCommand()
|
|
}
|
|
}
|
|
|
|
module.exports = command
|