From cc8d3d331a7b460584ec370b0151a6f0b0f69e3f Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 10 Jan 2026 04:34:24 +0100 Subject: [PATCH] fix(release): include whatsapp in npm pack --- package.json | 3 ++- scripts/release-check.ts | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index a0603ff75..1c7094d0c 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,8 @@ "dist/utils/**", "dist/logging/**", "dist/markdown/**", - "dist/pairing/**" + "dist/pairing/**", + "dist/whatsapp/**" ], "scripts": { "dev": "tsx src/entry.ts", diff --git a/scripts/release-check.ts b/scripts/release-check.ts index e94db0713..2a54ae754 100755 --- a/scripts/release-check.ts +++ b/scripts/release-check.ts @@ -9,6 +9,7 @@ const requiredPaths = [ "dist/discord/send.js", "dist/hooks/gmail.js", "dist/msteams/send.js", + "dist/whatsapp/normalize.js", ]; const forbiddenPrefixes = ["dist/Clawdbot.app/"];