Skip to content

Commit b807744

Browse files
committed
fix: remove duplicate dev command short options
1 parent 5b9ab21 commit b807744

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/dev/dev.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ export const createDevCommand = (program: BaseCommand) => {
319319
)
320320
.addOption(
321321
new Option(
322-
'-e, --edgeInspect [address]',
322+
'--edgeInspect [address]',
323323
'Old, prefer --edge-inspect. Enable the V8 Inspector Protocol for Edge Functions, with an optional address in the host:port format',
324324
)
325325
.conflicts('edgeInspectBrk')
@@ -336,7 +336,7 @@ export const createDevCommand = (program: BaseCommand) => {
336336
)
337337
.addOption(
338338
new Option(
339-
'-E, --edgeInspectBrk [address]',
339+
'--edgeInspectBrk [address]',
340340
'Old, prefer --edge-inspect-brk. Enable the V8 Inspector Protocol for Edge Functions and pause execution on the first line of code, with an optional address in the host:port format',
341341
)
342342
.conflicts('edgeInspect')

0 commit comments

Comments
 (0)