@cedarjs/cli 5.0.0-canary.2556 → 5.0.0-canary.2559
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.
|
@@ -21,7 +21,6 @@ import { loadAndValidateSdls } from "@cedarjs/internal/dist/validateSchema";
|
|
|
21
21
|
import { detectPrerenderRoutes } from "@cedarjs/prerender/detection";
|
|
22
22
|
import { timedTelemetry } from "@cedarjs/telemetry";
|
|
23
23
|
import { buildCedarApp } from "@cedarjs/vite/build";
|
|
24
|
-
import { buildUDApiServer } from "@cedarjs/vite/buildUDApiServer";
|
|
25
24
|
import { generatePrismaCommand } from "../../lib/generatePrismaClient.js";
|
|
26
25
|
import { getPaths, getConfig } from "../../lib/index.js";
|
|
27
26
|
import { buildPackagesTask } from "./buildPackagesTask.js";
|
|
@@ -254,7 +253,7 @@ Run ` + c.info(formatCedarCommand(["build"])) + " (without specifying a workspac
|
|
|
254
253
|
const originalCwd = process.cwd();
|
|
255
254
|
process.chdir(cedarPaths.web.base);
|
|
256
255
|
try {
|
|
257
|
-
await buildCedarApp({ verbose, workspace });
|
|
256
|
+
await buildCedarApp({ verbose, workspace, ud: true });
|
|
258
257
|
} finally {
|
|
259
258
|
process.chdir(originalCwd);
|
|
260
259
|
}
|
|
@@ -267,12 +266,6 @@ Run ` + c.info(formatCedarCommand(["build"])) + " (without specifying a workspac
|
|
|
267
266
|
);
|
|
268
267
|
}
|
|
269
268
|
}
|
|
270
|
-
},
|
|
271
|
-
ud && workspace.includes("api") && {
|
|
272
|
-
title: "Bundling API server entry (Universal Deploy)...",
|
|
273
|
-
task: () => {
|
|
274
|
-
return buildUDApiServer({ verbose });
|
|
275
|
-
}
|
|
276
269
|
}
|
|
277
270
|
];
|
|
278
271
|
if (apiRootPath !== void 0) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/cli",
|
|
3
|
-
"version": "5.0.0-canary.
|
|
3
|
+
"version": "5.0.0-canary.2559",
|
|
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.7",
|
|
35
35
|
"@babel/preset-typescript": "7.29.7",
|
|
36
|
-
"@cedarjs/api-server": "5.0.0-canary.
|
|
37
|
-
"@cedarjs/cli-helpers": "5.0.0-canary.
|
|
38
|
-
"@cedarjs/fastify-web": "5.0.0-canary.
|
|
39
|
-
"@cedarjs/internal": "5.0.0-canary.
|
|
40
|
-
"@cedarjs/prerender": "5.0.0-canary.
|
|
41
|
-
"@cedarjs/project-config": "5.0.0-canary.
|
|
42
|
-
"@cedarjs/structure": "5.0.0-canary.
|
|
43
|
-
"@cedarjs/telemetry": "5.0.0-canary.
|
|
44
|
-
"@cedarjs/utils": "5.0.0-canary.
|
|
45
|
-
"@cedarjs/vite": "5.0.0-canary.
|
|
46
|
-
"@cedarjs/web-server": "5.0.0-canary.
|
|
36
|
+
"@cedarjs/api-server": "5.0.0-canary.2559",
|
|
37
|
+
"@cedarjs/cli-helpers": "5.0.0-canary.2559",
|
|
38
|
+
"@cedarjs/fastify-web": "5.0.0-canary.2559",
|
|
39
|
+
"@cedarjs/internal": "5.0.0-canary.2559",
|
|
40
|
+
"@cedarjs/prerender": "5.0.0-canary.2559",
|
|
41
|
+
"@cedarjs/project-config": "5.0.0-canary.2559",
|
|
42
|
+
"@cedarjs/structure": "5.0.0-canary.2559",
|
|
43
|
+
"@cedarjs/telemetry": "5.0.0-canary.2559",
|
|
44
|
+
"@cedarjs/utils": "5.0.0-canary.2559",
|
|
45
|
+
"@cedarjs/vite": "5.0.0-canary.2559",
|
|
46
|
+
"@cedarjs/web-server": "5.0.0-canary.2559",
|
|
47
47
|
"@listr2/prompt-adapter-enquirer": "4.2.1",
|
|
48
48
|
"@opentelemetry/api": "1.9.1",
|
|
49
49
|
"@opentelemetry/core": "1.30.1",
|