@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/index.js
CHANGED
|
@@ -172662,7 +172662,9 @@ if (isHMR) {
|
|
|
172662
172662
|
}
|
|
172663
172663
|
component = mount(Component, { target, props: mergedProps });
|
|
172664
172664
|
window.__HMR_PRESERVED_STATE__ = undefined;
|
|
172665
|
-
} else if (
|
|
172665
|
+
} else if (!shouldHydrate) {
|
|
172666
|
+
component = undefined;
|
|
172667
|
+
} else if (isSsrDirty || hasIslandHtml) {
|
|
172666
172668
|
component = mount(Component, { target, props: initialProps });
|
|
172667
172669
|
} else {
|
|
172668
172670
|
component = hydrate(Component, { target, props: initialProps });
|
|
@@ -172670,7 +172672,7 @@ if (isHMR) {
|
|
|
172670
172672
|
|
|
172671
172673
|
if (typeof window !== "undefined") {
|
|
172672
172674
|
window.__SVELTE_COMPONENT__ = component;
|
|
172673
|
-
window.__SVELTE_UNMOUNT__ = function() { unmount(component); };
|
|
172675
|
+
window.__SVELTE_UNMOUNT__ = function() { if (component) { unmount(component); } };
|
|
172674
172676
|
window.__ABS_SLOT_HYDRATION_PENDING__ = shouldHydrate;
|
|
172675
172677
|
var releaseStreamingSlots = function() {
|
|
172676
172678
|
window.__ABS_SLOT_HYDRATION_PENDING__ = false;
|
|
@@ -173259,7 +173261,7 @@ ${registrations}
|
|
|
173259
173261
|
({ tsLibDir } = cached);
|
|
173260
173262
|
cached.lastUsed = Date.now();
|
|
173261
173263
|
} else {
|
|
173262
|
-
const tsPath = __require.resolve("typescript");
|
|
173264
|
+
const tsPath = __require.resolve("/home/alexkahn/abs/absolutejs/node_modules/typescript/lib/typescript.js");
|
|
173263
173265
|
const tsRootDir = dirname9(tsPath);
|
|
173264
173266
|
tsLibDir = tsRootDir.endsWith("lib") ? tsRootDir : resolve18(tsRootDir, "lib");
|
|
173265
173267
|
const config = readConfiguration("./tsconfig.json");
|
|
@@ -187588,5 +187590,5 @@ export {
|
|
|
187588
187590
|
ANGULAR_INIT_TIMEOUT_MS
|
|
187589
187591
|
};
|
|
187590
187592
|
|
|
187591
|
-
//# debugId=
|
|
187593
|
+
//# debugId=6A030229535DDFD264756E2164756E21
|
|
187592
187594
|
//# sourceMappingURL=index.js.map
|