From 107be5272df6862a56ac21c596c237208fae7311 Mon Sep 17 00:00:00 2001 From: Yilin Jing Date: Wed, 25 Mar 2026 11:37:58 +0800 Subject: [PATCH] fix: add changeset publish to release script The release script only ran `npm run build` (tsc) without actually publishing to npm. This caused the changesets/action to succeed without creating a GitHub release or publishing v0.2.2 to the registry. Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4c8b6aa..69c41e2 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "test": "npm run build && node --test test/*.test.mjs", "lint": "tsc --noEmit", "version": "changeset version", - "release": "npm run build" + "release": "npm run build && changeset publish" }, "dependencies": { "@fastify/cookie": "^11.0.2",