@uniweb/runtime 0.19.1 → 0.19.3
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 +2 -2
- package/src/isolate-api.js +10 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniweb/runtime",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.3",
|
|
4
4
|
"description": "Minimal runtime for loading Uniweb foundations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"node": ">=20.19"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@uniweb/core": "^0.24.
|
|
39
|
+
"@uniweb/core": "^0.24.2",
|
|
40
40
|
"@uniweb/theming": "^0.1.15"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
package/src/isolate-api.js
CHANGED
|
@@ -128,12 +128,16 @@ export const ISOLATE_API = Object.freeze({
|
|
|
128
128
|
* version is unusable, and a second number to read and compose would be one more
|
|
129
129
|
* thing to miss, failing silently when missed.
|
|
130
130
|
*
|
|
131
|
-
* ⚠️ **
|
|
132
|
-
*
|
|
133
|
-
*
|
|
134
|
-
*
|
|
135
|
-
*
|
|
136
|
-
*
|
|
131
|
+
* ⚠️ **This paragraph used to defend the OLD name, and the defence was hollow.**
|
|
132
|
+
* It read: *"the name is now slightly narrow, and that is a deliberate trade —
|
|
133
|
+
* renaming a published key is a cross-lane change for a word."* ⭐ **The whole
|
|
134
|
+
* argument rested on that cost, and the human simply removed it** *(2026-09-06:
|
|
135
|
+
* "It's easy to change it. I can tell backend.")* — so the name was fixed rather
|
|
136
|
+
* than excused, and the key is `minUsable` on the wire.
|
|
137
|
+
*
|
|
138
|
+
* ⇒ *Kept because the shape recurs: an argument whose only support is a cost
|
|
139
|
+
* someone else is willing to pay is not an argument, it is an estimate — and it
|
|
140
|
+
* should be stated as one, so the person holding the cost can overrule it.*
|
|
137
141
|
*
|
|
138
142
|
* ⇒ **Raise this when a runtime change makes an older one unable to speak to a
|
|
139
143
|
* shipped peer.** Not for a feature, not for a fix — for an incompatibility.
|