From d115045051be0727971a86fbd9f0b4009f2434e8 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Mon, 29 Jan 2024 04:52:33 +0100 Subject: [PATCH] chore: remove `ws` from shared args for now --- src/cli.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cli.ts b/src/cli.ts index 8e94711..879e99d 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -35,6 +35,10 @@ export const main = defineCommand({ description: "Watch for changes", alias: "w", }, + ws: { + type: "boolean", + description: "Enable Experimental WebSocket support", + }, ...getArgs(), }, async run({ args }) { @@ -86,10 +90,6 @@ export function getArgs() { type: "boolean", description: "Open the URL in the browser", }, - ws: { - type: "boolean", - description: "Enable Experimental WebSocket support", - }, https: { type: "boolean", description: "Enable HTTPS",