@absolutejs/absolute 0.19.0-beta.743 → 0.19.0-beta.745
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/browser.js +4 -1
- package/dist/angular/browser.js.map +5 -4
- package/dist/angular/index.js +16 -12
- package/dist/angular/index.js.map +6 -5
- package/dist/angular/server.js +16 -12
- package/dist/angular/server.js.map +6 -5
- package/dist/build.js +2 -5
- package/dist/build.js.map +3 -3
- package/dist/index.js +6 -9
- package/dist/index.js.map +4 -4
- package/dist/src/angular/browser.d.ts +2 -0
- package/dist/src/angular/index.d.ts +2 -0
- package/dist/src/angular/page.d.ts +5 -0
- package/dist/src/angular/pageHandler.d.ts +7 -5
- package/dist/src/angular/server.d.ts +2 -0
- package/dist/types/angular.d.ts +9 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -46740,14 +46740,11 @@ var mimeTypes, getMimeType = (filePath) => {
|
|
|
46740
46740
|
continue;
|
|
46741
46741
|
newIdentities.set(stripHash(webPath), webPath);
|
|
46742
46742
|
}
|
|
46743
|
-
const liveWebPaths = new Set(newIdentities.values());
|
|
46744
46743
|
const staleKeys = [...store.keys()].filter((existingPath) => {
|
|
46745
46744
|
if (existingPath.includes("/chunk-"))
|
|
46746
46745
|
return false;
|
|
46747
46746
|
const replacement = newIdentities.get(stripHash(existingPath));
|
|
46748
|
-
|
|
46749
|
-
return replacement !== existingPath;
|
|
46750
|
-
return !liveWebPaths.has(existingPath);
|
|
46747
|
+
return replacement !== undefined && replacement !== existingPath;
|
|
46751
46748
|
});
|
|
46752
46749
|
staleKeys.forEach((key) => store.delete(key));
|
|
46753
46750
|
for (const webPath of newIdentities.values()) {
|
|
@@ -50081,5 +50078,5 @@ export {
|
|
|
50081
50078
|
build
|
|
50082
50079
|
};
|
|
50083
50080
|
|
|
50084
|
-
//# debugId=
|
|
50081
|
+
//# debugId=15A6E474707FB42564756E2164756E21
|
|
50085
50082
|
//# sourceMappingURL=build.js.map
|