f961a6da81
* chore(server): various useful multiregion changes from comments pr * hopefully fixing CI? * test fix * more test fixes?? * more test fixes.. * plz work ;(((( * revert multiregion on by default
14 lines
324 B
TypeScript
14 lines
324 B
TypeScript
import { noop } from 'lodash'
|
|
import { CommandModule } from 'yargs'
|
|
|
|
const command: CommandModule = {
|
|
command: 'workspaces',
|
|
describe: 'Various workspace related actions',
|
|
builder(yargs) {
|
|
return yargs.commandDir('workspaces', { extensions: ['js', 'ts'] }).demandCommand()
|
|
},
|
|
handler: noop
|
|
}
|
|
|
|
export = command
|