Fix bug where you weren't able to use both the -q and -j flags at the same time #227

Merged
Vylpes merged 17 commits from feature/181-q-json-flags into develop 2024-12-07 22:21:43 +00:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit 922bcde4ba - Show all commits

View file

@ -6,7 +6,9 @@
"author": "Vylpes",
"exports": "./dist/index.js",
"typings": "./dist/index.d.ts",
"bin": "./dist/cli.js",
"bin": {
"random-bunny": "./dist/cli.js"
},
"main": "./dist/index.js",
"keywords": [
"rabbit",

View file

@ -1,3 +1,4 @@
#!/usr/bin/env node
import { Command, Option } from "commander";
import randomBunny from "./index";
import ICliOptions from "./contracts/ICliOptions";