@uniweb/unipress 0.9.6 → 0.9.8
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/package.json +4 -4
- package/src/content-loader.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniweb/unipress",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.8",
|
|
4
4
|
"description": "Compile a content directory into a document (PDF, EPUB, Paged.js HTML, Typst source bundle, DOCX, XLSX) using a Uniweb foundation. Five built-in templates: book, monograph, report, data-report, directory.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
"prompts": "^2.4.2",
|
|
50
50
|
"react": "^19.0.0",
|
|
51
51
|
"react-dom": "^19.0.0",
|
|
52
|
-
"@uniweb/build": "^0.
|
|
52
|
+
"@uniweb/build": "^0.41.0",
|
|
53
53
|
"@uniweb/content-reader": "^1.2.4",
|
|
54
54
|
"@uniweb/semantic-parser": "^1.4.0",
|
|
55
|
-
"@uniweb/core": "^0.
|
|
56
|
-
"@uniweb/runtime": "^0.
|
|
55
|
+
"@uniweb/core": "^0.23.0",
|
|
56
|
+
"@uniweb/runtime": "^0.17.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"vitest": "^4.1.7"
|
package/src/content-loader.js
CHANGED
|
@@ -143,8 +143,8 @@ async function resolveLocalQueries(siteContent, sitePath) {
|
|
|
143
143
|
// things, where `records`, `queries` and `entities` each carry meaning.
|
|
144
144
|
//
|
|
145
145
|
// This holds **records, keyed by the query that resolved them**, and the name
|
|
146
|
-
// now says exactly that. ⚠️ Not `config.records`, which the framework
|
|
147
|
-
// uses for live
|
|
146
|
+
// now says exactly that. ⚠️ Not `config.services.records`, which the framework
|
|
147
|
+
// already uses for the live records lane (`core/src/records-service.js`).
|
|
148
148
|
//
|
|
149
149
|
// The value is the record ARRAY directly, not `{ records: [...] }`. The
|
|
150
150
|
// wrapper existed to merge with a pre-existing `config.collections` from the
|