repowisestage 0.0.79 → 0.0.80

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.
@@ -6040,6 +6040,16 @@ function createGraphCache(options = {}) {
6040
6040
  clearTimeout(entry.evictTimer);
6041
6041
  delete entry.evictTimer;
6042
6042
  }
6043
+ if (entry.sessionCount > 0) {
6044
+ void loadFromDisk(repoId).then((fresh) => {
6045
+ if (entries.get(repoId) === entry) {
6046
+ entry.graph = fresh.graph;
6047
+ entry.loadedMtime = fresh.loadedMtime;
6048
+ }
6049
+ }, () => {
6050
+ });
6051
+ return;
6052
+ }
6043
6053
  entries.delete(repoId);
6044
6054
  },
6045
6055
  stats() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repowisestage",
3
- "version": "0.0.79",
3
+ "version": "0.0.80",
4
4
  "type": "module",
5
5
  "description": "AI-optimized codebase context generator",
6
6
  "bin": {