@absolutejs/absolute 0.19.0-beta.103 → 0.19.0-beta.105
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/.absolutejs/tsconfig.tsbuildinfo +1 -1
- package/dist/build.js +26 -1
- package/dist/build.js.map +4 -4
- package/dist/index.js +26 -1
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -171561,6 +171561,19 @@ var isDev, extractBuildError = (logs, pass, label, frameworkNames, isIncremental
|
|
|
171561
171561
|
}
|
|
171562
171562
|
const reactClientLogs = reactClientResult?.logs ?? [];
|
|
171563
171563
|
const reactClientOutputs = reactClientResult?.outputs ?? [];
|
|
171564
|
+
if (hmr && reactClientOutputs.length > 0) {
|
|
171565
|
+
const REFRESH_NOOP = "window.$RefreshReg$||(window.$RefreshReg$=function(){});window.$RefreshSig$||(window.$RefreshSig$=function(){return function(t){return t}});";
|
|
171566
|
+
for (const output of reactClientOutputs) {
|
|
171567
|
+
if (output.kind !== "entry-point")
|
|
171568
|
+
continue;
|
|
171569
|
+
try {
|
|
171570
|
+
const content = await Bun.file(output.path).text();
|
|
171571
|
+
if (content.includes(REFRESH_NOOP)) {
|
|
171572
|
+
writeFileSync3(output.path, content.replace(REFRESH_NOOP, "").replace(/^\n/, ""));
|
|
171573
|
+
}
|
|
171574
|
+
} catch {}
|
|
171575
|
+
}
|
|
171576
|
+
}
|
|
171564
171577
|
if (reactClientResult && !reactClientResult.success && reactClientLogs.length > 0) {
|
|
171565
171578
|
extractBuildError(reactClientLogs, "react-client", "React client", frameworkNames, isIncremental, throwOnError);
|
|
171566
171579
|
}
|
|
@@ -203484,6 +203497,18 @@ var moduleServerPromise, getModuleServer = () => moduleServerPromise, parseError
|
|
|
203484
203497
|
if (vendorPaths) {
|
|
203485
203498
|
await rewriteReactImports2(clientResult.outputs.map((art) => art.path), vendorPaths);
|
|
203486
203499
|
}
|
|
203500
|
+
const { readFileSync: readFs, writeFileSync: writeFs } = await import("fs");
|
|
203501
|
+
const REFRESH_NOOP = "window.$RefreshReg$||(window.$RefreshReg$=function(){});window.$RefreshSig$||(window.$RefreshSig$=function(){return function(t){return t}});";
|
|
203502
|
+
for (const output of clientResult.outputs) {
|
|
203503
|
+
if (output.kind !== "entry-point")
|
|
203504
|
+
continue;
|
|
203505
|
+
try {
|
|
203506
|
+
const content = readFs(output.path, "utf-8");
|
|
203507
|
+
if (content.includes(REFRESH_NOOP)) {
|
|
203508
|
+
writeFs(output.path, content.replace(REFRESH_NOOP, "").replace(/^\n/, ""));
|
|
203509
|
+
}
|
|
203510
|
+
} catch {}
|
|
203511
|
+
}
|
|
203487
203512
|
const clientManifest = generateManifest2(clientResult.outputs, buildDir);
|
|
203488
203513
|
Object.assign(state.manifest, clientManifest);
|
|
203489
203514
|
await populateAssetStore(state.assetStore, clientManifest, buildDir);
|
|
@@ -204907,5 +204932,5 @@ export {
|
|
|
204907
204932
|
build
|
|
204908
204933
|
};
|
|
204909
204934
|
|
|
204910
|
-
//# debugId=
|
|
204935
|
+
//# debugId=0D1F63D570A5C7DA64756E2164756E21
|
|
204911
204936
|
//# sourceMappingURL=build.js.map
|