From f3be3ef542569b321ef3e49cc5845796af503c93 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Sun, 3 Aug 2025 12:50:59 -0400 Subject: [PATCH] Snapshot release v0.0.0-202508031649 --- script/publish.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/publish.ts b/script/publish.ts index b5074d7ed8..23f63c532f 100755 --- a/script/publish.ts +++ b/script/publish.ts @@ -15,7 +15,7 @@ const pkgjsons = await Array.fromAsync( new Bun.Glob("**/package.json").scan({ absolute: true, }), -).then((arr) => arr.filter((x) => !x.includes("node_modules"))) +).then((arr) => arr.filter((x) => !x.includes("node_modules") && !x.includes("dist"))) const tree = await $`git add . && git write-tree`.text().then((x) => x.trim()) for (const file of pkgjsons) {