@lynx-js/react-canary 0.112.3-canary-20250813-cb6d23c3 → 0.112.3-canary-20250813-e1152fc7

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,9 +1,11 @@
1
1
  # @lynx-js/react
2
2
 
3
- ## 0.112.3-canary-20250813090336-cb6d23c3dc99c7dda584b1b81bfe08c8822cc7b6
3
+ ## 0.112.3-canary-20250813122445-e1152fc7953d68baaa6c3798434c895c61e447c4
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - fix css transform error in testing library ([#1500](https://github.com/lynx-family/lynx-stack/pull/1500))
8
+
7
9
  - Introduce recursive hydration for lists to prevent double remove/insert on moves. ([#1401](https://github.com/lynx-family/lynx-stack/pull/1401))
8
10
 
9
11
  - Handle `<frame/>` correctly. ([#1497](https://github.com/lynx-family/lynx-stack/pull/1497))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lynx-js/react-canary",
3
- "version": "0.112.3-canary-20250813-cb6d23c3",
3
+ "version": "0.112.3-canary-20250813-e1152fc7",
4
4
  "description": "ReactLynx is a framework for developing Lynx applications with familiar React.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -5,7 +5,7 @@
5
5
  Rslib v0.11.2
6
6
 
7
7
  info build started...
8
- ready built in 0.12 s
8
+ ready built in 0.19 s
9
9
 
10
10
  File (esm) Size 
11
11
  dist/index.js 10.5 kB
@@ -55,7 +55,8 @@ const createVitestConfig = async (options)=>{
55
55
  enforce: 'pre',
56
56
  transform (sourceText, sourcePath) {
57
57
  const id = sourcePath;
58
- if (id.endsWith('.css') || id.endsWith('.less') || id.endsWith('.scss')) return '';
58
+ const regex = /\.(?:js|jsx|mjs|cjs|ts|tsx|mts|cts)(\?.*)?$/;
59
+ if (!regex.test(id)) return null;
59
60
  const { transformReactLynxSync } = vitest_config_require('@lynx-js/react/transform');
60
61
  const relativePath = normalizeSlashes(path.relative(vitest_config_dirname, sourcePath));
61
62
  const basename = path.basename(sourcePath);