@cedarjs/cli 5.0.0-canary.13902 → 5.0.0-canary.13907
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.
- package/dist/commands/serve.js +2 -2
- package/package.json +13 -13
package/dist/commands/serve.js
CHANGED
|
@@ -22,7 +22,7 @@ const builder = async (yargs) => {
|
|
|
22
22
|
builder: (yargs2) => {
|
|
23
23
|
bothServerCLIConfig.builder(yargs2);
|
|
24
24
|
return yargs2.option("ud", {
|
|
25
|
-
description: "Use the Universal Deploy server
|
|
25
|
+
description: "Use the Universal Deploy server for the API side. The web side is served by the existing static file server. Pass --ud to opt in; the default is Fastify for both sides.",
|
|
26
26
|
type: "boolean",
|
|
27
27
|
default: false
|
|
28
28
|
});
|
|
@@ -163,7 +163,7 @@ const builder = async (yargs) => {
|
|
|
163
163
|
return yargs2.option("ud", {
|
|
164
164
|
// UD serving is opt-in. Pass --ud to use the new srvx server instead
|
|
165
165
|
// of the legacy Fastify server.
|
|
166
|
-
description: "Use the Universal Deploy server
|
|
166
|
+
description: "Use the Universal Deploy server. Pass --ud to opt in; the default is Fastify.",
|
|
167
167
|
type: "boolean",
|
|
168
168
|
default: false
|
|
169
169
|
});
|
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.13907+714061f63e",
|
|
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.
|
|
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.13907",
|
|
37
|
+
"@cedarjs/cli-helpers": "5.0.0-canary.13907",
|
|
38
|
+
"@cedarjs/fastify-web": "5.0.0-canary.13907",
|
|
39
|
+
"@cedarjs/internal": "5.0.0-canary.13907",
|
|
40
|
+
"@cedarjs/prerender": "5.0.0-canary.13907",
|
|
41
|
+
"@cedarjs/project-config": "5.0.0-canary.13907",
|
|
42
|
+
"@cedarjs/structure": "5.0.0-canary.13907",
|
|
43
|
+
"@cedarjs/telemetry": "5.0.0-canary.13907",
|
|
44
|
+
"@cedarjs/utils": "5.0.0-canary.13907",
|
|
45
|
+
"@cedarjs/vite": "5.0.0-canary.13907",
|
|
46
|
+
"@cedarjs/web-server": "5.0.0-canary.13907",
|
|
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": "
|
|
111
|
+
"gitHead": "714061f63e2f5172793ddd35345b782c2cd00572"
|
|
112
112
|
}
|