fix(release): include msteams in npm pack

This commit is contained in:
Peter Steinberger
2026-01-10 04:30:56 +01:00
parent 6b9e1b9dbb
commit 5ec2018c8a
3 changed files with 7 additions and 1 deletions

View File

@@ -5,7 +5,11 @@ import { execSync } from "node:child_process";
type PackFile = { path: string };
type PackResult = { files?: PackFile[] };
const requiredPaths = ["dist/discord/send.js", "dist/hooks/gmail.js"];
const requiredPaths = [
"dist/discord/send.js",
"dist/hooks/gmail.js",
"dist/msteams/send.js",
];
const forbiddenPrefixes = ["dist/Clawdbot.app/"];
function runPackDry(): PackResult[] {