mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: 190n <190n@users.noreply.github.com> Co-authored-by: 190n <7763597+190n@users.noreply.github.com>
9 lines
147 B
TypeScript
9 lines
147 B
TypeScript
import { Command } from "commander";
|
|
|
|
new Command("test")
|
|
.action(() => {
|
|
console.log("Test command");
|
|
process.exit(0);
|
|
})
|
|
.parse();
|