@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
|
@@ -226,7 +226,9 @@
|
|
|
226
226
|
"Bash(kill 897850)",
|
|
227
227
|
"Bash(sed -i 's/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.64\"\"\"\"/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.65\"\"\"\"/' package.json)",
|
|
228
228
|
"Bash(kill 899808)",
|
|
229
|
-
"Bash(sed -i 's/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.65\"\"\"\"/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.66\"\"\"\"/' package.json)"
|
|
229
|
+
"Bash(sed -i 's/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.65\"\"\"\"/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.66\"\"\"\"/' package.json)",
|
|
230
|
+
"Bash(kill 906595)",
|
|
231
|
+
"Bash(sed -i 's/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.66\"\"\"\"/\"\"\"\"@absolutejs\\\\/absolute\"\"\"\": \"\"\"\"0.19.0-beta.67\"\"\"\"/' package.json)"
|
|
230
232
|
]
|
|
231
233
|
}
|
|
232
234
|
}
|
package/dist/build.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 = () => {
|
|
@@ -204910,5 +204900,5 @@ export {
|
|
|
204910
204900
|
build
|
|
204911
204901
|
};
|
|
204912
204902
|
|
|
204913
|
-
//# debugId=
|
|
204903
|
+
//# debugId=FA7B9F8C946AF29164756E2164756E21
|
|
204914
204904
|
//# sourceMappingURL=build.js.map
|