@octanejs/lexical 0.1.4 → 0.1.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/README.md +6 -0
- package/package.json +18 -4
package/README.md
CHANGED
|
@@ -66,6 +66,12 @@ React hooks to octane's (1:1 in nearly all cases), `forwardRef` to octane's
|
|
|
66
66
|
ref-as-prop, `@floating-ui/react` to `@floating-ui/dom`, and the class-based
|
|
67
67
|
`LexicalErrorBoundary` to octane's `<ErrorBoundary>`.
|
|
68
68
|
|
|
69
|
+
Lexical node classes require one module-family identity. The package manifest marks
|
|
70
|
+
both `lexical` and the `@lexical/*` family as Vite prebundle exclusions. Octane expands
|
|
71
|
+
the family rule to the exact `@lexical` packages declared by the binding and app before
|
|
72
|
+
passing it to Vite, so a cold dependency crawl cannot mix optimizer generations as it
|
|
73
|
+
discovers additional Lexical modules.
|
|
74
|
+
|
|
69
75
|
## Status
|
|
70
76
|
|
|
71
77
|
Current scope, known divergences, and verification status are tracked in the
|
package/package.json
CHANGED
|
@@ -1,13 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@octanejs/lexical",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": ">=22"
|
|
8
|
+
},
|
|
6
9
|
"octane": {
|
|
7
10
|
"hookSlots": {
|
|
8
11
|
"manual": [
|
|
9
12
|
"src"
|
|
10
13
|
]
|
|
14
|
+
},
|
|
15
|
+
"vite": {
|
|
16
|
+
"optimizeDeps": {
|
|
17
|
+
"exclude": [
|
|
18
|
+
"@lexical/*",
|
|
19
|
+
"lexical"
|
|
20
|
+
]
|
|
21
|
+
}
|
|
11
22
|
}
|
|
12
23
|
},
|
|
13
24
|
"description": "Lexical bindings for the octane renderer — reuses the framework-agnostic @lexical/* core and reimplements the @lexical/react layer on octane's hooks.",
|
|
@@ -94,8 +105,10 @@
|
|
|
94
105
|
"@lexical/yjs": "0.46.0",
|
|
95
106
|
"lexical": "0.46.0",
|
|
96
107
|
"yjs": "^13.6.0",
|
|
97
|
-
"@octanejs/floating-ui": "0.1.
|
|
98
|
-
|
|
108
|
+
"@octanejs/floating-ui": "0.1.8"
|
|
109
|
+
},
|
|
110
|
+
"peerDependencies": {
|
|
111
|
+
"octane": "0.1.9"
|
|
99
112
|
},
|
|
100
113
|
"devDependencies": {
|
|
101
114
|
"@lexical/react": "0.46.0",
|
|
@@ -103,7 +116,8 @@
|
|
|
103
116
|
"esbuild": "^0.28.1",
|
|
104
117
|
"react": "^19.2.0",
|
|
105
118
|
"react-dom": "^19.2.0",
|
|
106
|
-
"vitest": "^4.1.9"
|
|
119
|
+
"vitest": "^4.1.9",
|
|
120
|
+
"octane": "0.1.9"
|
|
107
121
|
},
|
|
108
122
|
"scripts": {
|
|
109
123
|
"test": "vitest run"
|