@utaba/deep-memory 0.9.1 → 0.9.2
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/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3490,7 +3490,7 @@ var EventBus = class {
|
|
|
3490
3490
|
};
|
|
3491
3491
|
|
|
3492
3492
|
// src/portability/RepositoryExporter.ts
|
|
3493
|
-
var LIBRARY_VERSION = true ? "0.9.
|
|
3493
|
+
var LIBRARY_VERSION = true ? "0.9.2" : "0.1.0";
|
|
3494
3494
|
var RepositoryExporter = class {
|
|
3495
3495
|
storage;
|
|
3496
3496
|
provenance;
|
|
@@ -5284,9 +5284,11 @@ var InMemoryStorageProvider = class {
|
|
|
5284
5284
|
group.relationships.push(rel);
|
|
5285
5285
|
}
|
|
5286
5286
|
nextFrontier.add(connectedEntityId);
|
|
5287
|
-
visited.add(connectedEntityId);
|
|
5288
5287
|
}
|
|
5289
5288
|
}
|
|
5289
|
+
for (const id of nextFrontier) {
|
|
5290
|
+
visited.add(id);
|
|
5291
|
+
}
|
|
5290
5292
|
layers.push(layer);
|
|
5291
5293
|
currentFrontier = nextFrontier;
|
|
5292
5294
|
if (nextFrontier.size === 0) break;
|