We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9978ff commit dc4f2a0Copy full SHA for dc4f2a0
src/index.ts
@@ -1 +1,13 @@
1
-console.log("Hello via Bun!");
+import { Command } from "commander";
2
+import packageJson from "../package.json" with { type: "json" };
3
+
4
+const program = new Command();
5
6
+program
7
+ .name("TODO")
8
+ .version(packageJson.version)
9
+ .action(() => {
10
+ console.log("hello world");
11
+ });
12
13
+program.parse(process.argv);
0 commit comments