From 132835d85ee07342bdae008183ac58045633796e Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Mon, 22 Dec 2025 19:53:04 -0700 Subject: [PATCH] fix: use test:ci in prepublishOnly to avoid hanging in watch mode --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f555d9d..f857a12 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "dev": "tsc --watch", "test": "vitest", "test:ci": "vitest run", - "prepublishOnly": "npm run build && npm test" + "prepublishOnly": "npm run build && npm run test:ci" }, "peerDependencies": { "astro": "^5.0.0"