@lark.js/mvc 0.0.7 → 0.0.9

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": "@lark.js/mvc",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "description": "@lark.js/mvc - TypeScript MVC framework",
5
5
  "keywords": [
6
6
  "framework",
@@ -58,6 +58,16 @@
58
58
  "types": "./dist/runtime.d.cts",
59
59
  "default": "./dist/runtime.cjs"
60
60
  }
61
+ },
62
+ "./compiler": {
63
+ "import": {
64
+ "types": "./dist/compiler.d.ts",
65
+ "default": "./dist/compiler.js"
66
+ },
67
+ "require": {
68
+ "types": "./dist/compiler.d.cts",
69
+ "default": "./dist/compiler.cjs"
70
+ }
61
71
  }
62
72
  },
63
73
  "scripts": {
@@ -66,7 +76,7 @@
66
76
  "build:rollup": "rollup -c rollup.config.mjs",
67
77
  "build:tsup": "tsup",
68
78
  "clean": "rm -rf dist",
69
- "format": "prettier -w ./",
79
+ "format": "prettier -w ./ --experimental-cli",
70
80
  "typecheck": "tsc -p tsconfig.build.json --noEmit",
71
81
  "test": "vitest run",
72
82
  "test:watch": "vitest",
@@ -80,14 +90,14 @@
80
90
  "@rollup/plugin-commonjs": "^29.0.3",
81
91
  "@rollup/plugin-node-resolve": "^16.0.3",
82
92
  "@rollup/plugin-typescript": "^12.3.0",
83
- "@types/node": "^25.9.2",
93
+ "@types/node": "^24.13.2",
84
94
  "@vitest/coverage-v8": "4.1.6",
85
- "rollup": "^4.61.1",
95
+ "rollup": "^4.62.0",
86
96
  "rollup-plugin-dts": "^6.4.1",
87
97
  "tsup": "^8.5.1",
88
98
  "typescript": "^5.9.3",
89
99
  "vite": "^8.0.16",
90
- "vitest": "^4.1.8"
100
+ "vitest": "^4.1.9"
91
101
  },
92
102
  "peerDependencies": {
93
103
  "vite": "^8.0.14"
package/src/client.d.ts CHANGED
@@ -50,9 +50,9 @@ declare global {
50
50
  }
51
51
 
52
52
  interface Element {
53
- /** VDOM diff cached compare key flag */
53
+ /** DOM diff cached compare key flag */
54
54
  compareKeyCached?: number | undefined;
55
- /** VDOM diff cached compare key */
55
+ /** DOM diff cached compare key */
56
56
  cachedCompareKey?: string | undefined;
57
57
  "v-lark"?: string | undefined;
58
58