@lynx-js/react-canary 0.115.3-canary-20251229-a7e194ab → 0.115.3-canary-20251229-e81c190a

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,6 @@
1
1
  # @lynx-js/react
2
2
 
3
- ## 0.115.3-canary-20251229060618-a7e194abc5394b1bf7dde954b93d1f73a9242b6d
3
+ ## 0.115.3-canary-20251229084915-e81c190a8236a6744a0408457987729177f3f4a4
4
4
 
5
5
  ### Patch Changes
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lynx-js/react-canary",
3
- "version": "0.115.3-canary-20251229-a7e194ab",
3
+ "version": "0.115.3-canary-20251229-e81c190a",
4
4
  "description": "ReactLynx is a framework for developing Lynx applications with familiar React.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -4,8 +4,12 @@
4
4
 
5
5
  Rslib v0.15.0
6
6
 
7
+ [Rspack Deprecation] `experiments.lazyBarrel` config is deprecated and will be removed in Rspack v2.0. Lazy barrel is already stable and enabled by default. Remove this option from your Rspack configuration.
8
+ [Rspack Deprecation] `experiments.inlineConst` config is deprecated and will be removed in Rspack v2.0. Inline Const is already stable and enabled by default. Remove this option from your Rspack configuration.
9
+ [Rspack Deprecation] `experiments.inlineEnum` config is deprecated and will be removed in Rspack v2.0. Inline Enum is already stable. Remove this option from your Rspack configuration.
10
+ [Rspack Deprecation] `experiments.typeReexportsPresence` config is deprecated and will be removed in Rspack v2.0. typeReexportsPresence is already stable. Remove this option from your Rspack configuration.
7
11
  info build started...
8
- ready built in 0.07 s
12
+ ready built in 0.15 s
9
13
 
10
14
  File (esm) Size 
11
15
  dist/index.js 10.1 kB
@@ -41,6 +41,7 @@ const initElementTree = ()=>{
41
41
  __CreatePage(_tag, parentComponentUniqueId) {
42
42
  const page = this.__CreateElement('page', parentComponentUniqueId);
43
43
  this.root = page;
44
+ document.body.innerHTML = '';
44
45
  lynxTestingEnv.jsdom.window.document.body.appendChild(page);
45
46
  return page;
46
47
  }
@@ -1,6 +1,6 @@
1
1
  import { cleanup } from "./pure.js";
2
2
  export * from "./pure.js";
3
- if ('undefined' == typeof process || 'true' !== process.env.PTL_SKIP_AUTO_CLEANUP) {
3
+ if ("u" < typeof process || 'true' !== process.env.PTL_SKIP_AUTO_CLEANUP) {
4
4
  if ('function' == typeof afterEach) afterEach(()=>{
5
5
  cleanup();
6
6
  lynxTestingEnv.reset();