@lynx-js/react 0.114.3 → 0.114.4
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 +44 -0
- package/package.json +1 -1
- package/refresh/.turbo/turbo-build.log +1 -1
- package/runtime/lib/backgroundSnapshot.js +3 -1
- package/runtime/lib/backgroundSnapshot.js.map +1 -1
- package/runtime/lib/hydrate.d.ts +3 -1
- package/runtime/lib/hydrate.js +24 -5
- package/runtime/lib/hydrate.js.map +1 -1
- package/runtime/lib/listUpdateInfo.js +15 -1
- package/runtime/lib/listUpdateInfo.js.map +1 -1
- package/testing-library/dist/vitest.config.js +126 -1
- package/testing-library/types/vitest-config.d.ts +9 -1
- package/transform/dist/wasm.cjs +1 -1
- package/transform/index.d.ts +2 -0
package/transform/index.d.ts
CHANGED
|
@@ -598,6 +598,7 @@ export interface TransformNodiffOptions {
|
|
|
598
598
|
isModule?: boolean | 'unknown'
|
|
599
599
|
cssScope: boolean | CssScopeVisitorConfig
|
|
600
600
|
snapshot?: boolean | JsxTransformerConfig
|
|
601
|
+
engineVersion?: string
|
|
601
602
|
shake: boolean | ShakeVisitorConfig
|
|
602
603
|
compat: boolean | CompatVisitorConfig
|
|
603
604
|
refresh: boolean | RefreshVisitorConfig
|
|
@@ -607,6 +608,7 @@ export interface TransformNodiffOptions {
|
|
|
607
608
|
dynamicImport?: boolean | DynamicImportVisitorConfig
|
|
608
609
|
/** @internal */
|
|
609
610
|
inject?: boolean | InjectVisitorConfig
|
|
611
|
+
inputSourceMap?: string
|
|
610
612
|
}
|
|
611
613
|
export interface TransformNodiffOutput {
|
|
612
614
|
code: string
|