@absolutejs/absolute 0.19.0-beta.294 → 0.19.0-beta.296
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/dist/build.js +9 -1
- package/dist/build.js.map +3 -3
- package/dist/index.js +9 -1
- package/dist/index.js.map +3 -3
- package/dist/react/browser.js +63 -11
- package/dist/react/browser.js.map +6 -5
- package/dist/src/client/preserveIslandMarkup.d.ts +17 -0
- package/dist/vue/browser.js +53 -5
- package/dist/vue/browser.js.map +5 -4
- package/dist/vue/index.js +62 -11
- package/dist/vue/index.js.map +5 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -203586,6 +203586,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
203586
203586
|
define: vueDirectory ? vueFeatureFlags : undefined,
|
|
203587
203587
|
entrypoints: nonReactClientEntryPoints,
|
|
203588
203588
|
external: [
|
|
203589
|
+
...Object.keys(vendorPaths ?? {}),
|
|
203589
203590
|
...Object.keys(angularVendorPaths2 ?? {}),
|
|
203590
203591
|
...Object.keys(vueVendorPaths2 ?? {}),
|
|
203591
203592
|
...Object.keys(svelteVendorPaths2 ?? {})
|
|
@@ -203663,9 +203664,16 @@ ${content.slice(firstUseIdx)}`;
|
|
|
203663
203664
|
}
|
|
203664
203665
|
const nonReactClientLogs = nonReactClientResult?.logs ?? [];
|
|
203665
203666
|
const nonReactClientOutputs = nonReactClientResult?.outputs ?? [];
|
|
203667
|
+
const nonReactClientOutputPaths = nonReactClientOutputs.map((artifact) => artifact.path);
|
|
203666
203668
|
const islandClientLogs = islandClientResult?.logs ?? [];
|
|
203667
203669
|
const islandClientOutputs = islandClientResult?.outputs ?? [];
|
|
203668
203670
|
const islandClientOutputPaths = islandClientOutputs.map((artifact) => artifact.path);
|
|
203671
|
+
if (vendorPaths && nonReactClientOutputPaths.length > 0) {
|
|
203672
|
+
await rewriteReactImports(nonReactClientOutputPaths, vendorPaths);
|
|
203673
|
+
}
|
|
203674
|
+
if (hmr && nonReactClientOutputPaths.length > 0) {
|
|
203675
|
+
await patchRefreshGlobals(nonReactClientOutputPaths);
|
|
203676
|
+
}
|
|
203669
203677
|
if (vendorPaths && islandClientOutputPaths.length > 0) {
|
|
203670
203678
|
await rewriteReactImports(islandClientOutputPaths, vendorPaths);
|
|
203671
203679
|
}
|
|
@@ -215456,5 +215464,5 @@ export {
|
|
|
215456
215464
|
ANGULAR_INIT_TIMEOUT_MS
|
|
215457
215465
|
};
|
|
215458
215466
|
|
|
215459
|
-
//# debugId=
|
|
215467
|
+
//# debugId=874B4D2025D5DD5264756E2164756E21
|
|
215460
215468
|
//# sourceMappingURL=index.js.map
|