@inerrata-corporation/errata 2.0.3-dev.1791 → 2.0.3-dev.1792
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/errata.mjs +4 -1
- package/package.json +1 -1
package/errata.mjs
CHANGED
|
@@ -57762,7 +57762,7 @@ function createWatchBreaker(deps) {
|
|
|
57762
57762
|
}
|
|
57763
57763
|
|
|
57764
57764
|
// src/engine.ts
|
|
57765
|
-
var DAEMON_VERSION = true ? "2.0.3-dev.
|
|
57765
|
+
var DAEMON_VERSION = true ? "2.0.3-dev.1792" : "2.0.0-alpha.0";
|
|
57766
57766
|
var IGNORED_PATH = /[\\/](?:\.git|node_modules|\.errata|\.claude|\.codex|\.cursor|\.turbo|\.next|dist|coverage|test-results|playwright-report|__pycache__)(?:[\\/]|$)/;
|
|
57767
57767
|
var IGNORED_NOISE = /castalia\.db|eventlog\.sqlite|turn-cursors/;
|
|
57768
57768
|
var GIT_OP_MUTE_MS = 4e3;
|
|
@@ -60566,6 +60566,7 @@ function buildInstanceIngest(store, profile, daemonVersion, ignorePatterns = [],
|
|
|
60566
60566
|
};
|
|
60567
60567
|
const nodes = [];
|
|
60568
60568
|
const seen = /* @__PURE__ */ new Set();
|
|
60569
|
+
const walked = /* @__PURE__ */ new Set();
|
|
60569
60570
|
const shippedById = /* @__PURE__ */ new Map();
|
|
60570
60571
|
const anchorSources = /* @__PURE__ */ new Set();
|
|
60571
60572
|
const semanticEndpoints = /* @__PURE__ */ new Map();
|
|
@@ -60597,6 +60598,8 @@ function buildInstanceIngest(store, profile, daemonVersion, ignorePatterns = [],
|
|
|
60597
60598
|
const population = label === "RootCause" && opts.sharedStore ? [...store.findNodesByLabel(label), ...opts.sharedStore.findNodesByLabel(label)] : store.findNodesByLabel(label);
|
|
60598
60599
|
for (const n of population) {
|
|
60599
60600
|
if (seen.has(n.id)) continue;
|
|
60601
|
+
if (walked.has(n.id)) continue;
|
|
60602
|
+
walked.add(n.id);
|
|
60600
60603
|
composition.candidates++;
|
|
60601
60604
|
if (n.attrs["source"] === "cloud") {
|
|
60602
60605
|
composition.cloudSourced++;
|