@hyperframes/gcp-cloud-run 0.7.60 → 0.7.61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/Dockerfile +22 -3
  2. package/package.json +3 -2
package/Dockerfile CHANGED
@@ -92,6 +92,11 @@ COPY packages/studio/package.json packages/studio/package.json
92
92
  COPY packages/shader-transitions/package.json packages/shader-transitions/package.json
93
93
  COPY packages/aws-lambda/package.json packages/aws-lambda/package.json
94
94
  COPY packages/gcp-cloud-run/package.json packages/gcp-cloud-run/package.json
95
+ COPY packages/lint/package.json packages/lint/package.json
96
+ COPY packages/parsers/package.json packages/parsers/package.json
97
+ COPY packages/sdk/package.json packages/sdk/package.json
98
+ COPY packages/sdk-playground/package.json packages/sdk-playground/package.json
99
+ COPY packages/studio-server/package.json packages/studio-server/package.json
95
100
  RUN bun install --frozen-lockfile
96
101
 
97
102
  # Copy source for the packages the render path needs.
@@ -99,10 +104,24 @@ COPY packages/core/ packages/core/
99
104
  COPY packages/engine/ packages/engine/
100
105
  COPY packages/producer/ packages/producer/
101
106
  COPY packages/gcp-cloud-run/ packages/gcp-cloud-run/
107
+ COPY packages/lint/ packages/lint/
108
+ COPY packages/parsers/ packages/parsers/
109
+ COPY packages/sdk/ packages/sdk/
110
+ COPY packages/sdk-playground/ packages/sdk-playground/
111
+ COPY packages/studio-server/ packages/studio-server/
102
112
 
103
- # Build core runtime artifacts (needed by the renderer) + producer, then the
104
- # adapter. Generate embedded font data so glyph layout matches production.
105
- RUN bun run --filter @hyperframes/core build:hyperframes-runtime:modular \
113
+ # Build workspace dependencies before the producer bundle. The published
114
+ # workspace packages are not prebuilt in a fresh clone, so producer's esbuild
115
+ # resolution otherwise fails on parsers/core compiler entrypoints. Generate
116
+ # embedded font data so glyph layout matches production.
117
+ RUN bun run --cwd packages/parsers build \
118
+ && bun run --cwd packages/lint build \
119
+ && bun run --cwd packages/studio-server build \
120
+ && bun run --cwd packages/core build \
121
+ && bun run --cwd packages/core build:hyperframes-runtime:modular \
122
+ && bun run --cwd packages/sdk build \
123
+ && bun run --cwd packages/sdk-playground build \
124
+ && bun run --cwd packages/engine build \
106
125
  && (cd packages/producer && bunx tsx scripts/generate-font-data.ts) \
107
126
  && bun run --cwd packages/producer build \
108
127
  && bun run --cwd packages/gcp-cloud-run build
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperframes/gcp-cloud-run",
3
- "version": "0.7.60",
3
+ "version": "0.7.61",
4
4
  "description": "Google Cloud Run + Workflows adapter for HyperFrames distributed rendering — request handler, client-side SDK, and Terraform module.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -41,7 +41,7 @@
41
41
  "hono": "^4.6.0",
42
42
  "puppeteer-core": "^25.2.1",
43
43
  "tar": "^7.4.3",
44
- "@hyperframes/producer": "^0.7.60"
44
+ "@hyperframes/producer": "^0.7.61"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/node": "^25.0.10",
@@ -54,6 +54,7 @@
54
54
  "node": ">=22"
55
55
  },
56
56
  "scripts": {
57
+ "test:dockerfile-workspaces": "node check-dockerfile-workspaces.mjs",
57
58
  "build": "node build.mjs",
58
59
  "start": "bun dist/server.js",
59
60
  "test": "bun test",