To reproduce:
npm install
node index.js testNote that it prints out both test and main
| import { defineCommand, runMain } from "citty"; | |
| const main = defineCommand({ | |
| run() { | |
| console.log("main"); | |
| }, | |
| subCommands: { | |
| test: { | |
| run() { | |
| console.log("test"); | |
| }, | |
| }, | |
| }, | |
| }); | |
| runMain(main); |
| { | |
| "type": "module", | |
| "dependencies": { | |
| "citty": "^0.2.2" | |
| } | |
| } |