4b06f42db7
* sort of works * type fixes * added option to run old way too
14 lines
332 B
TypeScript
14 lines
332 B
TypeScript
import { noop } from 'lodash-es'
|
|
import type { 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
|