index.ts 443 B

1234567891011121314151617
  1. import { cmd } from "../cmd"
  2. import { FileCommand } from "./file"
  3. import { LSPCommand } from "./lsp"
  4. import { RipgrepCommand } from "./ripgrep"
  5. import { SnapshotCommand } from "./snapshot"
  6. export const DebugCommand = cmd({
  7. command: "debug",
  8. builder: (yargs) =>
  9. yargs
  10. .command(LSPCommand)
  11. .command(RipgrepCommand)
  12. .command(FileCommand)
  13. .command(SnapshotCommand)
  14. .demandCommand(),
  15. async handler() {},
  16. })