@absolutejs/absolute 0.19.0-beta.949 → 0.19.0-beta.950
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/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/angular/index.js +5 -2
- package/dist/angular/index.js.map +3 -3
- package/dist/angular/server.js +5 -2
- package/dist/angular/server.js.map +3 -3
- 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/package.json +1 -1
package/dist/angular/server.js
CHANGED
|
@@ -4431,7 +4431,10 @@ export const __ABSOLUTE_PAGE_USES_LEGACY_ANIMATIONS__ = true;
|
|
|
4431
4431
|
...candidatePaths.map((file) => resolve6(file)),
|
|
4432
4432
|
...compiledFallbackPaths
|
|
4433
4433
|
];
|
|
4434
|
-
let candidate = normalizedCandidates.find((file) => existsSync4(file) && file.endsWith(`${sep}
|
|
4434
|
+
let candidate = normalizedCandidates.find((file) => existsSync4(file) && file.endsWith(`${sep}${relativeEntry}`));
|
|
4435
|
+
if (!candidate) {
|
|
4436
|
+
candidate = normalizedCandidates.find((file) => existsSync4(file) && file.endsWith(`${sep}pages${sep}${jsName}`));
|
|
4437
|
+
}
|
|
4435
4438
|
if (!candidate) {
|
|
4436
4439
|
candidate = normalizedCandidates.find((file) => existsSync4(file) && file.endsWith(`${sep}${jsName}`));
|
|
4437
4440
|
}
|
|
@@ -5912,5 +5915,5 @@ export {
|
|
|
5912
5915
|
ABSOLUTE_HTTP_TRANSFER_CACHE_SKIP_HEADER
|
|
5913
5916
|
};
|
|
5914
5917
|
|
|
5915
|
-
//# debugId=
|
|
5918
|
+
//# debugId=5F6BCB17E0588FD664756E2164756E21
|
|
5916
5919
|
//# sourceMappingURL=server.js.map
|