@absolutejs/absolute 0.19.0-beta.396 → 0.19.0-beta.397
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/angular/index.js +2 -2
- package/dist/angular/index.js.map +1 -1
- package/dist/angular/server.js +2 -2
- package/dist/angular/server.js.map +1 -1
- package/dist/build.js +6 -4
- package/dist/build.js.map +3 -3
- package/dist/index.js +6 -4
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -172081,7 +172081,9 @@ if (isHMR) {
|
|
|
172081
172081
|
}
|
|
172082
172082
|
component = mount(Component, { target, props: mergedProps });
|
|
172083
172083
|
window.__HMR_PRESERVED_STATE__ = undefined;
|
|
172084
|
-
} else if (
|
|
172084
|
+
} else if (!shouldHydrate) {
|
|
172085
|
+
component = undefined;
|
|
172086
|
+
} else if (isSsrDirty || hasIslandHtml) {
|
|
172085
172087
|
component = mount(Component, { target, props: initialProps });
|
|
172086
172088
|
} else {
|
|
172087
172089
|
component = hydrate(Component, { target, props: initialProps });
|
|
@@ -172089,7 +172091,7 @@ if (isHMR) {
|
|
|
172089
172091
|
|
|
172090
172092
|
if (typeof window !== "undefined") {
|
|
172091
172093
|
window.__SVELTE_COMPONENT__ = component;
|
|
172092
|
-
window.__SVELTE_UNMOUNT__ = function() { unmount(component); };
|
|
172094
|
+
window.__SVELTE_UNMOUNT__ = function() { if (component) { unmount(component); } };
|
|
172093
172095
|
window.__ABS_SLOT_HYDRATION_PENDING__ = shouldHydrate;
|
|
172094
172096
|
var releaseStreamingSlots = function() {
|
|
172095
172097
|
window.__ABS_SLOT_HYDRATION_PENDING__ = false;
|
|
@@ -172678,7 +172680,7 @@ ${registrations}
|
|
|
172678
172680
|
({ tsLibDir } = cached);
|
|
172679
172681
|
cached.lastUsed = Date.now();
|
|
172680
172682
|
} else {
|
|
172681
|
-
const tsPath = __require.resolve("typescript");
|
|
172683
|
+
const tsPath = __require.resolve("/home/alexkahn/abs/absolutejs/node_modules/typescript/lib/typescript.js");
|
|
172682
172684
|
const tsRootDir = dirname8(tsPath);
|
|
172683
172685
|
tsLibDir = tsRootDir.endsWith("lib") ? tsRootDir : resolve15(tsRootDir, "lib");
|
|
172684
172686
|
const config = readConfiguration("./tsconfig.json");
|
|
@@ -179217,5 +179219,5 @@ export {
|
|
|
179217
179219
|
build
|
|
179218
179220
|
};
|
|
179219
179221
|
|
|
179220
|
-
//# debugId=
|
|
179222
|
+
//# debugId=3B6CA0D01FB2BA8B64756E2164756E21
|
|
179221
179223
|
//# sourceMappingURL=build.js.map
|