@lynx-js/react-canary 0.114.3-canary-20251023-9fb4623f → 0.114.4-canary-20251103-0d7a4c3d
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/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# @lynx-js/react
|
|
2
2
|
|
|
3
|
-
## 0.114.
|
|
3
|
+
## 0.114.4-canary-20251103073213-0d7a4c3d49d63e30d5f05c372ef99ee5cf2fcadd
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- When engineVersion is greater than or equal to 3.1, use `__SetAttribute` to set text attribute for text node instead of creating a raw text node. ([#1880](https://github.com/lynx-family/lynx-stack/pull/1880))
|
|
8
|
+
|
|
9
|
+
## 0.114.3
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
6
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/react-canary",
|
|
3
|
-
"version": "0.114.
|
|
3
|
+
"version": "0.114.4-canary-20251103-0d7a4c3d",
|
|
4
4
|
"description": "ReactLynx is a framework for developing Lynx applications with familiar React.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -74,6 +74,7 @@ const createVitestConfig = async (options)=>{
|
|
|
74
74
|
filename: relativePath,
|
|
75
75
|
target: 'MIXED'
|
|
76
76
|
},
|
|
77
|
+
engineVersion: options?.engineVersion ?? '',
|
|
77
78
|
directiveDCE: false,
|
|
78
79
|
defineDCE: false,
|
|
79
80
|
shake: false,
|
|
@@ -120,6 +121,9 @@ const createVitestConfig = async (options)=>{
|
|
|
120
121
|
...runtimeOSSAlias,
|
|
121
122
|
...runtimeAlias,
|
|
122
123
|
...preactAlias
|
|
124
|
+
],
|
|
125
|
+
include: options?.include ?? [
|
|
126
|
+
'src/**/*.test.{js,jsx,ts,tsx}'
|
|
123
127
|
]
|
|
124
128
|
}
|
|
125
129
|
});
|