@cedarjs/cli 5.0.0-canary.13897 → 5.0.0-canary.13899

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.
@@ -165,12 +165,6 @@ Run ` + c.info(formatCedarCommand(["build"])) + " (without specifying a workspac
165
165
  title: "Verifying graphql schema...",
166
166
  task: loadAndValidateSdls
167
167
  },
168
- ud && workspace.includes("api") && {
169
- title: "Bundling API server entry (Universal Deploy)...",
170
- task: async () => {
171
- await buildUDApiServer({ verbose });
172
- }
173
- },
174
168
  // When streaming SSR is enabled, fall back to the legacy separate build
175
169
  // paths because streaming SSR has its own complex build orchestration.
176
170
  // Phase 7 (SSR/RSC rebuild) will address unifying this path.
@@ -274,6 +268,12 @@ Run ` + c.info(formatCedarCommand(["build"])) + " (without specifying a workspac
274
268
  );
275
269
  }
276
270
  }
271
+ },
272
+ ud && workspace.includes("api") && {
273
+ title: "Bundling API server entry (Universal Deploy)...",
274
+ task: async () => {
275
+ await buildUDApiServer({ verbose });
276
+ }
277
277
  }
278
278
  ].filter((t) => Boolean(t));
279
279
  const triggerPrerender = async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/cli",
3
- "version": "5.0.0-canary.13897+bacad73258",
3
+ "version": "5.0.0-canary.13899+eb6c2b0f35",
4
4
  "description": "The CedarJS Command Line",
5
5
  "repository": {
6
6
  "type": "git",
@@ -33,17 +33,17 @@
33
33
  "dependencies": {
34
34
  "@babel/parser": "7.29.2",
35
35
  "@babel/preset-typescript": "7.28.5",
36
- "@cedarjs/api-server": "5.0.0-canary.13897",
37
- "@cedarjs/cli-helpers": "5.0.0-canary.13897",
38
- "@cedarjs/fastify-web": "5.0.0-canary.13897",
39
- "@cedarjs/internal": "5.0.0-canary.13897",
40
- "@cedarjs/prerender": "5.0.0-canary.13897",
41
- "@cedarjs/project-config": "5.0.0-canary.13897",
42
- "@cedarjs/structure": "5.0.0-canary.13897",
43
- "@cedarjs/telemetry": "5.0.0-canary.13897",
44
- "@cedarjs/utils": "5.0.0-canary.13897",
45
- "@cedarjs/vite": "5.0.0-canary.13897",
46
- "@cedarjs/web-server": "5.0.0-canary.13897",
36
+ "@cedarjs/api-server": "5.0.0-canary.13899",
37
+ "@cedarjs/cli-helpers": "5.0.0-canary.13899",
38
+ "@cedarjs/fastify-web": "5.0.0-canary.13899",
39
+ "@cedarjs/internal": "5.0.0-canary.13899",
40
+ "@cedarjs/prerender": "5.0.0-canary.13899",
41
+ "@cedarjs/project-config": "5.0.0-canary.13899",
42
+ "@cedarjs/structure": "5.0.0-canary.13899",
43
+ "@cedarjs/telemetry": "5.0.0-canary.13899",
44
+ "@cedarjs/utils": "5.0.0-canary.13899",
45
+ "@cedarjs/vite": "5.0.0-canary.13899",
46
+ "@cedarjs/web-server": "5.0.0-canary.13899",
47
47
  "@listr2/prompt-adapter-enquirer": "4.2.1",
48
48
  "@opentelemetry/api": "1.9.0",
49
49
  "@opentelemetry/core": "1.30.1",
@@ -108,5 +108,5 @@
108
108
  "publishConfig": {
109
109
  "access": "public"
110
110
  },
111
- "gitHead": "bacad7325800127ea2da2f055cdbff4e4b0a5785"
111
+ "gitHead": "eb6c2b0f35122011e47445b41d8b10d640ebc03e"
112
112
  }