@lytjs/renderer 6.4.0 → 6.5.0
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/README.md +14 -0
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -369,3 +369,17 @@ import type {
|
|
|
369
369
|
- [@lytjs/core](../core) - 框架核心入口,整合所有子包
|
|
370
370
|
- [@lytjs/adapter-web](../adapter-web) - Web 平台适配器
|
|
371
371
|
- [@lytjs/host-contract](../host-contract) - 渲染器宿主抽象
|
|
372
|
+
|
|
373
|
+
## 依赖版本
|
|
374
|
+
|
|
375
|
+
- [@lytjs/reactivity](https://www.npmjs.com/package/@lytjs/reactivity): ^6.4.0
|
|
376
|
+
- [@lytjs/vdom](https://www.npmjs.com/package/@lytjs/vdom): ^6.4.0
|
|
377
|
+
- [@lytjs/common-is](https://www.npmjs.com/package/@lytjs/common-is): ^6.4.0
|
|
378
|
+
- [@lytjs/common-string](https://www.npmjs.com/package/@lytjs/common-string): ^6.4.0
|
|
379
|
+
- [@lytjs/common-events](https://www.npmjs.com/package/@lytjs/common-events): ^6.4.0
|
|
380
|
+
- [@lytjs/common-dom](https://www.npmjs.com/package/@lytjs/common-dom): ^6.4.0
|
|
381
|
+
- [@lytjs/common-error](https://www.npmjs.com/package/@lytjs/common-error): ^6.4.0
|
|
382
|
+
- [@lytjs/dom-runtime](https://www.npmjs.com/package/@lytjs/dom-runtime): ^6.4.0
|
|
383
|
+
- [@lytjs/compiler](https://www.npmjs.com/package/@lytjs/compiler): ^6.4.0
|
|
384
|
+
- [@lytjs/host-contract](https://www.npmjs.com/package/@lytjs/host-contract): ^6.4.0
|
|
385
|
+
- [@lytjs/adapter-web](https://www.npmjs.com/package/@lytjs/adapter-web): ^6.4.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lytjs/renderer",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.5.0",
|
|
4
4
|
"description": "LytJS renderer - DOM, SSR, and Vapor rendering backends",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -46,17 +46,17 @@
|
|
|
46
46
|
"clean": "rm -rf dist"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@lytjs/reactivity": "^6.
|
|
50
|
-
"@lytjs/vdom": "^6.
|
|
51
|
-
"@lytjs/common-is": "^6.
|
|
52
|
-
"@lytjs/common-string": "^6.
|
|
53
|
-
"@lytjs/common-events": "^6.
|
|
54
|
-
"@lytjs/common-dom": "^6.
|
|
55
|
-
"@lytjs/common-error": "^6.
|
|
56
|
-
"@lytjs/dom-runtime": "^6.
|
|
57
|
-
"@lytjs/compiler": "^6.
|
|
58
|
-
"@lytjs/host-contract": "^6.
|
|
59
|
-
"@lytjs/adapter-web": "^6.
|
|
49
|
+
"@lytjs/reactivity": "^6.4.0",
|
|
50
|
+
"@lytjs/vdom": "^6.4.0",
|
|
51
|
+
"@lytjs/common-is": "^6.4.0",
|
|
52
|
+
"@lytjs/common-string": "^6.4.0",
|
|
53
|
+
"@lytjs/common-events": "^6.4.0",
|
|
54
|
+
"@lytjs/common-dom": "^6.4.0",
|
|
55
|
+
"@lytjs/common-error": "^6.4.0",
|
|
56
|
+
"@lytjs/dom-runtime": "^6.4.0",
|
|
57
|
+
"@lytjs/compiler": "^6.4.0",
|
|
58
|
+
"@lytjs/host-contract": "^6.4.0",
|
|
59
|
+
"@lytjs/adapter-web": "^6.4.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"tsup": "^8.0.0",
|