@absolutejs/absolute 0.19.0-beta.70 → 0.19.0-beta.71
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/.claude/settings.local.json +4 -1
- 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/scripts/use-patched-bun.sh +1 -1
package/dist/index.js
CHANGED
|
@@ -202917,9 +202917,12 @@ export default {};
|
|
|
202917
202917
|
}
|
|
202918
202918
|
return files;
|
|
202919
202919
|
}, invalidateModule = (filePath) => {
|
|
202920
|
+
const resolved = resolve18(filePath);
|
|
202921
|
+
console.log(`[invalidate] ${resolved} (cached: ${getTransformed(resolved) !== undefined}, cacheKeys: ${getTransformed(filePath) !== undefined})`);
|
|
202920
202922
|
invalidate(filePath);
|
|
202923
|
+
invalidate(resolved);
|
|
202921
202924
|
mtimeCache.delete(filePath);
|
|
202922
|
-
mtimeCache.delete(
|
|
202925
|
+
mtimeCache.delete(resolved);
|
|
202923
202926
|
}, warmCache = (pathname) => {
|
|
202924
202927
|
if (!pathname.startsWith(SRC_PREFIX))
|
|
202925
202928
|
return;
|
|
@@ -205305,5 +205308,5 @@ export {
|
|
|
205305
205308
|
ANGULAR_INIT_TIMEOUT_MS
|
|
205306
205309
|
};
|
|
205307
205310
|
|
|
205308
|
-
//# debugId=
|
|
205311
|
+
//# debugId=D763D62CB8B50EF264756E2164756E21
|
|
205309
205312
|
//# sourceMappingURL=index.js.map
|