add a few CLI commands

This commit is contained in:
Devin Zuczek
2026-07-16 11:33:01 -04:00
parent 03871dcdd8
commit ed155c163c
10 changed files with 450 additions and 9 deletions
+2
View File
@@ -3,6 +3,7 @@ import 'zx/globals'
import { program } from '@commander-js/extra-typings'
import { catchProcessError } from '@jahands/cli-tools/proc'
import { adminCmd } from '../cmd/admin.cmd'
import { buildCmd } from '../cmd/build.cmd'
import { checkCmd } from '../cmd/check.cmd'
import { ciCmd } from '../cmd/ci.cmd'
@@ -18,6 +19,7 @@ program
// While `packages/tools/bin` scripts work well for simple tasks,
// a typescript CLI is nicer for more complex things.
.addCommand(adminCmd)
.addCommand(fixCmd)
.addCommand(buildCmd)
.addCommand(checkCmd)