@absolutejs/absolute 0.19.0-beta.68 → 0.19.0-beta.69
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/.absolutejs/tsconfig.tsbuildinfo +1 -1
- package/.claude/settings.local.json +3 -1
- package/dist/build.js +2 -2
- package/dist/build.js.map +3 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -202343,11 +202343,11 @@ var globalStore, cache, importers, getTransformed = (filePath) => cache.get(file
|
|
|
202343
202343
|
}
|
|
202344
202344
|
}, invalidationVersions, getInvalidationVersion = (filePath) => invalidationVersions.get(filePath) ?? 0, invalidate = (filePath) => {
|
|
202345
202345
|
cache.delete(filePath);
|
|
202346
|
+
invalidationVersions.set(filePath, (invalidationVersions.get(filePath) ?? 0) + 1);
|
|
202346
202347
|
const parents = importers.get(filePath);
|
|
202347
202348
|
if (parents) {
|
|
202348
202349
|
for (const parent of parents) {
|
|
202349
202350
|
cache.delete(parent);
|
|
202350
|
-
invalidationVersions.set(parent, (invalidationVersions.get(parent) ?? 0) + 1);
|
|
202351
202351
|
}
|
|
202352
202352
|
}
|
|
202353
202353
|
}, invalidateAll = () => {
|
|
@@ -205288,5 +205288,5 @@ export {
|
|
|
205288
205288
|
ANGULAR_INIT_TIMEOUT_MS
|
|
205289
205289
|
};
|
|
205290
205290
|
|
|
205291
|
-
//# debugId=
|
|
205291
|
+
//# debugId=1B287E8C41EF9C7964756E2164756E21
|
|
205292
205292
|
//# sourceMappingURL=index.js.map
|