From ae5907cbbd826963bc7f8ff5e10f07e5232178b0 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Tue, 11 Nov 2025 16:55:17 +0100 Subject: [PATCH] meet.sh: add webcomponent bundle watcher to development commands --- meet.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meet.sh b/meet.sh index 7e9c6972..74bf7c37 100755 --- a/meet.sh +++ b/meet.sh @@ -399,6 +399,11 @@ add_common_dev_commands() { CMD_COLORS+=("blue") CMD_COMMANDS+=("node ./scripts/dev/watch-with-typings-guard.mjs 'pnpm run dev:testapp'") + # Webcomponent bundle watcher + CMD_NAMES+=("webcomponent") + CMD_COLORS+=("bgMagenta.black") + CMD_COMMANDS+=("node ./scripts/dev/watch-with-typings-guard.mjs 'pnpm run dev:webcomponent'") + } # Helper: Add CE-specific commands (backend, frontend)