@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.js
CHANGED
|
@@ -3431,7 +3431,7 @@ var EventBus = class {
|
|
|
3431
3431
|
};
|
|
3432
3432
|
|
|
3433
3433
|
// src/portability/RepositoryExporter.ts
|
|
3434
|
-
var LIBRARY_VERSION = true ? "0.9.
|
|
3434
|
+
var LIBRARY_VERSION = true ? "0.9.2" : "0.1.0";
|
|
3435
3435
|
var RepositoryExporter = class {
|
|
3436
3436
|
storage;
|
|
3437
3437
|
provenance;
|
|
@@ -5225,9 +5225,11 @@ var InMemoryStorageProvider = class {
|
|
|
5225
5225
|
group.relationships.push(rel);
|
|
5226
5226
|
}
|
|
5227
5227
|
nextFrontier.add(connectedEntityId);
|
|
5228
|
-
visited.add(connectedEntityId);
|
|
5229
5228
|
}
|
|
5230
5229
|
}
|
|
5230
|
+
for (const id of nextFrontier) {
|
|
5231
|
+
visited.add(id);
|
|
5232
|
+
}
|
|
5231
5233
|
layers.push(layer);
|
|
5232
5234
|
currentFrontier = nextFrontier;
|
|
5233
5235
|
if (nextFrontier.size === 0) break;
|