@absolutejs/absolute 0.19.0-beta.292 → 0.19.0-beta.293
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 +8 -1
- package/dist/build.js.map +3 -3
- package/dist/index.js +8 -1
- package/dist/index.js.map +3 -3
- package/dist/react/browser.js +30125 -9
- package/dist/react/browser.js.map +19 -3
- package/dist/src/react/browser.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -203665,6 +203665,13 @@ ${content.slice(firstUseIdx)}`;
|
|
|
203665
203665
|
const nonReactClientOutputs = nonReactClientResult?.outputs ?? [];
|
|
203666
203666
|
const islandClientLogs = islandClientResult?.logs ?? [];
|
|
203667
203667
|
const islandClientOutputs = islandClientResult?.outputs ?? [];
|
|
203668
|
+
const islandClientOutputPaths = islandClientOutputs.map((artifact) => artifact.path);
|
|
203669
|
+
if (vendorPaths && islandClientOutputPaths.length > 0) {
|
|
203670
|
+
await rewriteReactImports(islandClientOutputPaths, vendorPaths);
|
|
203671
|
+
}
|
|
203672
|
+
if (hmr && islandClientOutputPaths.length > 0) {
|
|
203673
|
+
await patchRefreshGlobals(islandClientOutputPaths);
|
|
203674
|
+
}
|
|
203668
203675
|
if (nonReactClientResult && !nonReactClientResult.success && nonReactClientLogs.length > 0) {
|
|
203669
203676
|
extractBuildError(nonReactClientLogs, "non-react-client", "Non-React client", frameworkNames, isIncremental, throwOnError);
|
|
203670
203677
|
}
|
|
@@ -215449,5 +215456,5 @@ export {
|
|
|
215449
215456
|
ANGULAR_INIT_TIMEOUT_MS
|
|
215450
215457
|
};
|
|
215451
215458
|
|
|
215452
|
-
//# debugId=
|
|
215459
|
+
//# debugId=0AD113D3BB7C3BD764756E2164756E21
|
|
215453
215460
|
//# sourceMappingURL=index.js.map
|