fix(release): sdk-playground version + pin Docker bun + skip private in verify

- Add missing version field to sdk-playground/package.json (broke pnpm pack)
- Skip private packages in verify-packed-manifests (prevent recurrence)
- Pin bun v1.3.13 in Dockerfile.test (1.3.14 produces different lockfile)
This commit is contained in:
Miguel Ángel
2026-06-15 13:06:24 +00:00
parent e2e13f1e6c
commit 3f3293da86
3 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ RUN npx --yes @puppeteer/browsers install chrome-headless-shell@148.0.7778.167 \
WORKDIR /app
# Install bun
RUN curl -fsSL https://bun.sh/install | bash
RUN curl -fsSL https://bun.sh/install | BUN_INSTALL="/root/.bun" bash -s "bun-v1.3.13"
ENV PATH="/root/.bun/bin:$PATH"
# Install dependencies (full, including devDependencies for tsx + test harness)
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@hyperframes/sdk-playground",
"version": "0.6.99",
"private": true,
"type": "module",
"scripts": {
+1
View File
@@ -43,6 +43,7 @@ function main() {
const sourcePackageJson = JSON.parse(
readFileSync(join(ROOT, workspace, "package.json"), "utf8"),
);
if (sourcePackageJson.private) continue;
if (listWorkspaceRefs(sourcePackageJson).length === 0) continue;
const packDir = mkdtempSync(join(tmpdir(), "hyperframes-pack-"));