From b221a40a0c92c7943a9699eb7df689c246f65709 Mon Sep 17 00:00:00 2001 From: Philippe Serhal Date: Tue, 21 Jan 2025 16:24:39 -0500 Subject: [PATCH] fix: remove duplicate dev command short options --- src/commands/dev/dev.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/dev/dev.ts b/src/commands/dev/dev.ts index 76b4e693f1c..c85447ba4f0 100644 --- a/src/commands/dev/dev.ts +++ b/src/commands/dev/dev.ts @@ -319,7 +319,7 @@ export const createDevCommand = (program: BaseCommand) => { ) .addOption( new Option( - '-e, --edgeInspect [address]', + '--edgeInspect [address]', 'Old, prefer --edge-inspect. Enable the V8 Inspector Protocol for Edge Functions, with an optional address in the host:port format', ) .conflicts('edgeInspectBrk') @@ -336,7 +336,7 @@ export const createDevCommand = (program: BaseCommand) => { ) .addOption( new Option( - '-E, --edgeInspectBrk [address]', + '--edgeInspectBrk [address]', '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', ) .conflicts('edgeInspect')