Skip to content

Commit b4a4e1f

Browse files
committed
fix: Remove test execution from prepublishOnly script
Tests are already run in a separate CI job with database setup. The publish job doesn't have database access and shouldn't run tests.
1 parent 1d41e15 commit b4a4e1f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"build": "tsc",
1515
"dev": "ts-node src/index.ts",
1616
"test": "bun test",
17-
"prepublishOnly": "bun test && bun run build",
17+
"prepublishOnly": "bun run build",
1818
"prepare": "bun run build",
1919
"example": "ts-node examples/basic-usage.ts",
2020
"db:up": "docker-compose up -d",

0 commit comments

Comments
 (0)