We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97c2da4 commit 5177ad5Copy full SHA for 5177ad5
2 files changed
package.json
@@ -35,7 +35,7 @@
35
"pre-commit": "bunx lint-staged"
36
},
37
"lint-staged": {
38
- "*": "eslint --fix"
+ "*": "bunx eslint --fix"
39
40
"dependencies": {
41
"citty": "^0.1.6",
src/main.ts
@@ -23,7 +23,7 @@ const main = defineCommand({
23
default: false,
24
description: "Enable verbose logging",
25
26
- logFile: {
+ "log-file": {
27
type: "string",
28
description: "File to log request/response details",
29
@@ -37,7 +37,7 @@ const main = defineCommand({
const portInt = parseInt(args.port, 10)
const port = await initializePort(portInt)
- await logger.initialize(args.logFile)
+ await logger.initialize(args["log-file"])
42
await initializeApp()
43
0 commit comments