fix: use test:ci in prepublishOnly to avoid hanging in watch mode

This commit is contained in:
Ryan Malloy 2025-12-22 19:53:04 -07:00
parent c7bcc4b1e5
commit 132835d85e

View File

@ -17,7 +17,7 @@
"dev": "tsc --watch", "dev": "tsc --watch",
"test": "vitest", "test": "vitest",
"test:ci": "vitest run", "test:ci": "vitest run",
"prepublishOnly": "npm run build && npm test" "prepublishOnly": "npm run build && npm run test:ci"
}, },
"peerDependencies": { "peerDependencies": {
"astro": "^5.0.0" "astro": "^5.0.0"