@uniweb/build 0.26.0 → 0.26.1
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniweb/build",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.1",
|
|
4
4
|
"description": "Build tooling for the Uniweb Component Web Platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -59,17 +59,17 @@
|
|
|
59
59
|
"js-yaml": "^4.1.0",
|
|
60
60
|
"sharp": "^0.35.3",
|
|
61
61
|
"yaml": "^2.5.0",
|
|
62
|
+
"@uniweb/semantic-parser": "^1.3.1",
|
|
62
63
|
"@uniweb/theming": "^0.1.15",
|
|
63
64
|
"@uniweb/schemas": "^0.2.10",
|
|
64
|
-
"@uniweb/
|
|
65
|
-
"@uniweb/projections": "^0.3.5",
|
|
65
|
+
"@uniweb/projections": "^0.3.6",
|
|
66
66
|
"@uniweb/content-writer": "^0.3.4"
|
|
67
67
|
},
|
|
68
68
|
"optionalDependencies": {
|
|
69
|
-
"@uniweb/runtime": "^0.12.
|
|
69
|
+
"@uniweb/runtime": "^0.12.13",
|
|
70
70
|
"@uniweb/schemas": "^0.2.10",
|
|
71
|
-
"@uniweb/
|
|
72
|
-
"@uniweb/
|
|
71
|
+
"@uniweb/content-reader": "^1.2.4",
|
|
72
|
+
"@uniweb/semantic-parser": "^1.3.1"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
75
|
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"@tailwindcss/vite": "^4.0.0",
|
|
79
79
|
"@vitejs/plugin-react": "^4.0.0 || ^5.0.0",
|
|
80
80
|
"vite-plugin-svgr": "^4.0.0",
|
|
81
|
-
"@uniweb/core": "^0.12.
|
|
81
|
+
"@uniweb/core": "^0.12.1"
|
|
82
82
|
},
|
|
83
83
|
"peerDependenciesMeta": {
|
|
84
84
|
"vite": {
|
|
@@ -25,15 +25,13 @@
|
|
|
25
25
|
*
|
|
26
26
|
* ⇒ **Do not reintroduce a bundle here.** One object per file is what the
|
|
27
27
|
* reader's static arm already assumes: a plain object GET on the verbatim tail,
|
|
28
|
-
* with nothing anywhere that unbundles.
|
|
29
|
-
* contract: `kb/framework/build/data-ball-retirement.md`.
|
|
28
|
+
* with nothing anywhere that unbundles.
|
|
30
29
|
*
|
|
31
30
|
* **A search index used to ride here too, and deliberately no longer does**
|
|
32
31
|
* (2026-08-01). Only a CLI deploy produced one — a CMS publish produced none —
|
|
33
32
|
* so a site's search existed or vanished depending on who published it, which
|
|
34
33
|
* is the artifact-flicker rule exactly. A host that wants search derives it from
|
|
35
|
-
* the content it already stores. See the note at the removal point below
|
|
36
|
-
* `collab/context/site-derived-artifacts.md`.
|
|
34
|
+
* the content it already stores. See the note at the removal point below.
|
|
37
35
|
*/
|
|
38
36
|
|
|
39
37
|
import { existsSync } from 'node:fs'
|
package/src/uwx/sync-package.js
CHANGED
|
@@ -146,8 +146,8 @@ function walkEntityAssets(node, visitor) {
|
|
|
146
146
|
// dropping `src` only forces that at the cost of a migration window across
|
|
147
147
|
// two consumer chains where images blank.
|
|
148
148
|
//
|
|
149
|
-
// ⇒ **Keep writing both.**
|
|
150
|
-
//
|
|
149
|
+
// ⇒ **Keep writing both.** Settled 2026-08-* against the two consumer
|
|
150
|
+
// chains above; do not re-derive it from one of them in isolation.
|
|
151
151
|
//
|
|
152
152
|
// ⇒ Writing both means content authored now stays correct whichever order the
|
|
153
153
|
// halves arrive in — the same reason the app writes both. The URL is dropped
|