feat(cli): Add new CLI commands, move to project root

This commit is contained in:
Jesse Wierzbinski 2024-05-08 00:10:14 +00:00
parent 68f16f9101
commit fc06b35c09
No known key found for this signature in database
21 changed files with 332 additions and 67 deletions

3
cli/bin/dev.cmd Normal file
View file

@ -0,0 +1,3 @@
@echo off
bun "%~dp0\dev" %*

5
cli/bin/dev.ts Executable file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env -S bun
import { execute } from "@oclif/core";
await execute({ development: true, dir: import.meta.url });

3
cli/bin/run.cmd Normal file
View file

@ -0,0 +1,3 @@
@echo off
bun "%~dp0\run" %*

5
cli/bin/run.ts Executable file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env bun
import { execute } from "@oclif/core";
await execute({ dir: import.meta.url });