Files
speckle-server/packages/server/modules/cli/commands/workspaces.ts
T
Kristaps Fabians Geikins f961a6da81 chore(server): various useful multiregion changes from comments pr (#3499)
* 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
2024-11-15 15:49:34 +02:00

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