@cedarjs/cli 3.0.0-canary.13222 → 3.0.0-canary.13224
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.
|
@@ -152,7 +152,7 @@ const coherenceFiles = {
|
|
|
152
152
|
prod:
|
|
153
153
|
command: ${apiProdCommand}
|
|
154
154
|
dev:
|
|
155
|
-
command: ["yarn", "
|
|
155
|
+
command: ["yarn", "cedar", "build", "api", "&&", "yarn", "cedar", "dev", "api", "--apiRootPath=/api"]
|
|
156
156
|
local_packages: ["node_modules"]
|
|
157
157
|
|
|
158
158
|
system:
|
|
@@ -168,20 +168,20 @@ const coherenceFiles = {
|
|
|
168
168
|
${db === "postgres" ? "adapter: postgresql" : ""}
|
|
169
169
|
|
|
170
170
|
# If you use data migrations, use the following instead:
|
|
171
|
-
# migration: ["yarn", "
|
|
172
|
-
migration: ["yarn", "
|
|
171
|
+
# migration: ["yarn", "cedar", "prisma", "migrate", "deploy", "&&", "yarn", "cedar", "data-migrate", "up"]
|
|
172
|
+
migration: ["yarn", "cedar", "prisma", "migrate", "deploy"]
|
|
173
173
|
|
|
174
174
|
web:
|
|
175
175
|
type: frontend
|
|
176
176
|
assets_path: "web/dist"
|
|
177
177
|
prod:
|
|
178
|
-
command: ["yarn", "
|
|
178
|
+
command: ["yarn", "cedar", "serve", "web"]
|
|
179
179
|
dev:
|
|
180
|
-
command: ["yarn", "
|
|
180
|
+
command: ["yarn", "cedar", "dev", "web", "--fwd=\\"--allowed-hosts all\\""]
|
|
181
181
|
|
|
182
182
|
# Heads up: Redwood's prerender doesn't work with Coherence yet.
|
|
183
183
|
# For current status and updates, see https://github.com/redwoodjs/redwood/issues/8333.
|
|
184
|
-
build: ["yarn", "
|
|
184
|
+
build: ["yarn", "cedar", "build", "web", "--no-prerender"]
|
|
185
185
|
local_packages: ["node_modules"]
|
|
186
186
|
|
|
187
187
|
system:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/cli",
|
|
3
|
-
"version": "3.0.0-canary.
|
|
3
|
+
"version": "3.0.0-canary.13224+e17651b7a",
|
|
4
4
|
"description": "The CedarJS Command Line",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@babel/preset-typescript": "7.28.5",
|
|
35
35
|
"@babel/runtime-corejs3": "7.28.4",
|
|
36
|
-
"@cedarjs/api-server": "3.0.0-canary.
|
|
37
|
-
"@cedarjs/cli-helpers": "3.0.0-canary.
|
|
38
|
-
"@cedarjs/fastify-web": "3.0.0-canary.
|
|
39
|
-
"@cedarjs/internal": "3.0.0-canary.
|
|
40
|
-
"@cedarjs/prerender": "3.0.0-canary.
|
|
41
|
-
"@cedarjs/project-config": "3.0.0-canary.
|
|
42
|
-
"@cedarjs/structure": "3.0.0-canary.
|
|
43
|
-
"@cedarjs/telemetry": "3.0.0-canary.
|
|
44
|
-
"@cedarjs/web-server": "3.0.0-canary.
|
|
36
|
+
"@cedarjs/api-server": "3.0.0-canary.13224",
|
|
37
|
+
"@cedarjs/cli-helpers": "3.0.0-canary.13224",
|
|
38
|
+
"@cedarjs/fastify-web": "3.0.0-canary.13224",
|
|
39
|
+
"@cedarjs/internal": "3.0.0-canary.13224",
|
|
40
|
+
"@cedarjs/prerender": "3.0.0-canary.13224",
|
|
41
|
+
"@cedarjs/project-config": "3.0.0-canary.13224",
|
|
42
|
+
"@cedarjs/structure": "3.0.0-canary.13224",
|
|
43
|
+
"@cedarjs/telemetry": "3.0.0-canary.13224",
|
|
44
|
+
"@cedarjs/web-server": "3.0.0-canary.13224",
|
|
45
45
|
"@listr2/prompt-adapter-enquirer": "2.0.16",
|
|
46
46
|
"@opentelemetry/api": "1.8.0",
|
|
47
47
|
"@opentelemetry/core": "1.22.0",
|
|
@@ -103,5 +103,5 @@
|
|
|
103
103
|
"publishConfig": {
|
|
104
104
|
"access": "public"
|
|
105
105
|
},
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "e17651b7a06335f8e14ebdd017182fbe97ff7b0e"
|
|
107
107
|
}
|