From 816b2b043c37782ac5a6aa3fb54c612278bfa925 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Sun, 3 Aug 2025 12:39:37 -0400 Subject: [PATCH] Snapshot release v0.0.0-202508031638 --- script/publish.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/script/publish.ts b/script/publish.ts index b5074d7ed..66dff941a 100755 --- a/script/publish.ts +++ b/script/publish.ts @@ -21,6 +21,7 @@ const tree = await $`git add . && git write-tree`.text().then((x) => x.trim()) for (const file of pkgjsons) { let pkg = await Bun.file(file).text() pkg = pkg.replaceAll(/"version": "[^"]+"/g, `"version": "${version}"`) + console.log("versioned", file, version) await Bun.file(file).write(pkg) }