fix: Remove conflicting "-h" aliases in TUI spawn and thread commands (#3651)

This commit is contained in:
Haris Gušić
2025-10-31 22:59:59 +01:00
committed by GitHub
parent 60dc38050d
commit a5ede68241
6 changed files with 43 additions and 25 deletions

View File

@@ -12,7 +12,6 @@ export const ServeCommand = cmd({
default: 0,
})
.option("hostname", {
alias: ["h"],
type: "string",
describe: "hostname to listen on",
default: "127.0.0.1",

View File

@@ -65,7 +65,6 @@ export const TuiCommand = cmd({
default: 0,
})
.option("hostname", {
alias: ["h"],
type: "string",
describe: "hostname to listen on",
default: "127.0.0.1",

View File

@@ -18,7 +18,6 @@ export const TuiSpawnCommand = cmd({
default: 0,
})
.option("hostname", {
alias: ["h"],
type: "string",
describe: "hostname to listen on",
default: "127.0.0.1",

View File

@@ -42,7 +42,6 @@ export const TuiThreadCommand = cmd({
default: 0,
})
.option("hostname", {
alias: ["h"],
type: "string",
describe: "hostname to listen on",
default: "127.0.0.1",