fix(ci): remove prepublishOnly build scripts (#50)

The publish workflow already runs `bun run build` before publishing.
The prepublishOnly scripts tried to run pnpm/bun which may not be
available during `npm publish`. Replace with no-op to prevent failures.
This commit is contained in:
Miguel Ángel
2026-03-25 19:11:37 +01:00
committed by GitHub
parent b7fbb52e0c
commit d2884531c1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -64,7 +64,7 @@
"test:hyperframe-runtime-ci": "bun run build:hyperframes-runtime && bun run test:hyperframe-runtime-contract && bun run test:hyperframe-runtime-behavior && bun run test:hyperframe-runtime-seek && bun run test:hyperframe-runtime-duration-guards && bun run test:hyperframe-runtime-parity && bun run test:hyperframe-runtime-security",
"check:hyperframe-html": "tsx scripts/check-hyperframe-static.ts",
"debug:timeline": "tsx scripts/debug-timeline.ts",
"prepublishOnly": "bun run build"
"prepublishOnly": "echo skip"
},
"devDependencies": {
"@types/jsdom": "^28.0.0",