@absolutejs/absolute 0.19.0-beta.67 → 0.19.0-beta.68
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 +7 -17
- package/dist/build.js.map +3 -3
- package/dist/index.js +7 -17
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -202342,22 +202342,12 @@ var globalStore, cache, importers, getTransformed = (filePath) => cache.get(file
|
|
|
202342
202342
|
importers.get(imp).add(filePath);
|
|
202343
202343
|
}
|
|
202344
202344
|
}, invalidationVersions, getInvalidationVersion = (filePath) => invalidationVersions.get(filePath) ?? 0, invalidate = (filePath) => {
|
|
202345
|
-
|
|
202346
|
-
const
|
|
202347
|
-
|
|
202348
|
-
const
|
|
202349
|
-
|
|
202350
|
-
|
|
202351
|
-
visited.add(current);
|
|
202352
|
-
cache.delete(current);
|
|
202353
|
-
if (current !== filePath) {
|
|
202354
|
-
invalidationVersions.set(current, (invalidationVersions.get(current) ?? 0) + 1);
|
|
202355
|
-
}
|
|
202356
|
-
const parents = importers.get(current);
|
|
202357
|
-
if (parents) {
|
|
202358
|
-
for (const parent of parents) {
|
|
202359
|
-
queue.push(parent);
|
|
202360
|
-
}
|
|
202345
|
+
cache.delete(filePath);
|
|
202346
|
+
const parents = importers.get(filePath);
|
|
202347
|
+
if (parents) {
|
|
202348
|
+
for (const parent of parents) {
|
|
202349
|
+
cache.delete(parent);
|
|
202350
|
+
invalidationVersions.set(parent, (invalidationVersions.get(parent) ?? 0) + 1);
|
|
202361
202351
|
}
|
|
202362
202352
|
}
|
|
202363
202353
|
}, invalidateAll = () => {
|
|
@@ -205298,5 +205288,5 @@ export {
|
|
|
205298
205288
|
ANGULAR_INIT_TIMEOUT_MS
|
|
205299
205289
|
};
|
|
205300
205290
|
|
|
205301
|
-
//# debugId=
|
|
205291
|
+
//# debugId=0EEED1DEBB36CC4064756E2164756E21
|
|
205302
205292
|
//# sourceMappingURL=index.js.map
|