@constela/start 1.8.12 → 1.8.15
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.
|
@@ -228,7 +228,10 @@ function evaluateJsonLdExpression(expr, ctx) {
|
|
|
228
228
|
return obj;
|
|
229
229
|
}
|
|
230
230
|
case "array":
|
|
231
|
-
|
|
231
|
+
if ("items" in expr) {
|
|
232
|
+
return expr.items.map((item) => evaluateJsonLdExpression(item, ctx));
|
|
233
|
+
}
|
|
234
|
+
return expr.elements.map((elem) => evaluateJsonLdExpression(elem, ctx));
|
|
232
235
|
default:
|
|
233
236
|
return "";
|
|
234
237
|
}
|
package/dist/cli/index.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -28,14 +28,14 @@ import {
|
|
|
28
28
|
transformCsv,
|
|
29
29
|
transformMdx,
|
|
30
30
|
transformYaml
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-ESCE7YQ3.js";
|
|
32
32
|
import {
|
|
33
33
|
evaluateMetaExpression,
|
|
34
34
|
generateHydrationScript,
|
|
35
35
|
generateMetaTags,
|
|
36
36
|
renderPage,
|
|
37
37
|
wrapHtml
|
|
38
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-OXGKHULH.js";
|
|
39
39
|
|
|
40
40
|
// src/build/ssg.ts
|
|
41
41
|
import { mkdir, writeFile } from "fs/promises";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@constela/start",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.15",
|
|
4
4
|
"description": "Meta-framework for Constela applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"@tailwindcss/postcss": "^4.0.0",
|
|
45
45
|
"tailwindcss": "^4.0.0",
|
|
46
46
|
"ws": "^8.18.0",
|
|
47
|
-
"@constela/compiler": "0.
|
|
48
|
-
"@constela/
|
|
49
|
-
"@constela/
|
|
50
|
-
"@constela/
|
|
51
|
-
"@constela/
|
|
47
|
+
"@constela/compiler": "0.14.1",
|
|
48
|
+
"@constela/core": "0.15.1",
|
|
49
|
+
"@constela/router": "17.0.0",
|
|
50
|
+
"@constela/runtime": "0.18.1",
|
|
51
|
+
"@constela/server": "11.0.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@types/ws": "^8.5.0",
|