diff --git a/cli/bin/dev.cmd b/cli/bin/dev.cmd deleted file mode 100644 index af5277ed..00000000 --- a/cli/bin/dev.cmd +++ /dev/null @@ -1,3 +0,0 @@ -@echo off - -bun "%~dp0\dev" %* diff --git a/cli/bin/dev.ts b/cli/bin/dev.ts deleted file mode 100755 index 9f0c6d5d..00000000 --- a/cli/bin/dev.ts +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env -S bun - -import { execute } from "@oclif/core"; - -await execute({ development: true, dir: import.meta.url }); diff --git a/cli/bin/run.cmd b/cli/bin/run.cmd deleted file mode 100644 index fbb3ae58..00000000 --- a/cli/bin/run.cmd +++ /dev/null @@ -1,3 +0,0 @@ -@echo off - -bun "%~dp0\run" %* diff --git a/cli/bin/run.ts b/cli/bin/run.ts deleted file mode 100755 index bce9512c..00000000 --- a/cli/bin/run.ts +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bun - -import { execute } from "@oclif/core"; - -await execute({ dir: import.meta.url });