@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/build.js
CHANGED
|
@@ -203180,6 +203180,13 @@ ${content.slice(firstUseIdx)}`;
|
|
|
203180
203180
|
const nonReactClientOutputs = nonReactClientResult?.outputs ?? [];
|
|
203181
203181
|
const islandClientLogs = islandClientResult?.logs ?? [];
|
|
203182
203182
|
const islandClientOutputs = islandClientResult?.outputs ?? [];
|
|
203183
|
+
const islandClientOutputPaths = islandClientOutputs.map((artifact) => artifact.path);
|
|
203184
|
+
if (vendorPaths && islandClientOutputPaths.length > 0) {
|
|
203185
|
+
await rewriteReactImports(islandClientOutputPaths, vendorPaths);
|
|
203186
|
+
}
|
|
203187
|
+
if (hmr && islandClientOutputPaths.length > 0) {
|
|
203188
|
+
await patchRefreshGlobals(islandClientOutputPaths);
|
|
203189
|
+
}
|
|
203183
203190
|
if (nonReactClientResult && !nonReactClientResult.success && nonReactClientLogs.length > 0) {
|
|
203184
203191
|
extractBuildError(nonReactClientLogs, "non-react-client", "Non-React client", frameworkNames, isIncremental, throwOnError);
|
|
203185
203192
|
}
|
|
@@ -208004,5 +208011,5 @@ export {
|
|
|
208004
208011
|
build
|
|
208005
208012
|
};
|
|
208006
208013
|
|
|
208007
|
-
//# debugId=
|
|
208014
|
+
//# debugId=85FE370D781DFAE264756E2164756E21
|
|
208008
208015
|
//# sourceMappingURL=build.js.map
|