@absolutejs/absolute 0.19.0-beta.368 → 0.19.0-beta.369
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 +5 -2
- package/dist/build.js.map +3 -3
- package/dist/index.js +5 -2
- package/dist/index.js.map +3 -3
- package/dist/react/index.js +4 -1
- package/dist/react/index.js.map +3 -3
- package/dist/react/server.js +4 -1
- package/dist/react/server.js.map +3 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -172556,7 +172556,7 @@ ${registrations}
|
|
|
172556
172556
|
({ tsLibDir } = cached);
|
|
172557
172557
|
cached.lastUsed = Date.now();
|
|
172558
172558
|
} else {
|
|
172559
|
-
const tsPath = __require.resolve("
|
|
172559
|
+
const tsPath = __require.resolve("typescript");
|
|
172560
172560
|
const tsRootDir = dirname8(tsPath);
|
|
172561
172561
|
tsLibDir = tsRootDir.endsWith("lib") ? tsRootDir : resolve15(tsRootDir, "lib");
|
|
172562
172562
|
const config = readConfiguration("./tsconfig.json");
|
|
@@ -176104,6 +176104,9 @@ var ssrDirty2 = false, buildDirtyResponse = (index, maybeProps) => {
|
|
|
176104
176104
|
console.error("[SSR] React streaming error:", error);
|
|
176105
176105
|
}
|
|
176106
176106
|
});
|
|
176107
|
+
if ("allReady" in stream && stream.allReady instanceof Promise) {
|
|
176108
|
+
await stream.allReady;
|
|
176109
|
+
}
|
|
176107
176110
|
const htmlStream = injectIslandPageContextStream(stream);
|
|
176108
176111
|
return new Response(htmlStream, {
|
|
176109
176112
|
headers: { "Content-Type": "text/html" }
|
|
@@ -179148,5 +179151,5 @@ export {
|
|
|
179148
179151
|
build
|
|
179149
179152
|
};
|
|
179150
179153
|
|
|
179151
|
-
//# debugId=
|
|
179154
|
+
//# debugId=F6A1E9B26F37A45164756E2164756E21
|
|
179152
179155
|
//# sourceMappingURL=build.js.map
|