@inerrata-corporation/errata 2.0.2-dev.873 → 2.0.2-dev.876

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.
Files changed (2) hide show
  1. package/errata.mjs +2 -2
  2. package/package.json +1 -1
package/errata.mjs CHANGED
@@ -53425,7 +53425,7 @@ function typePriorEdge(sourceLabel, targetLabel2, sentence = "") {
53425
53425
  if (direct) return direct;
53426
53426
  if (sentence && !NEG.test(sentence)) {
53427
53427
  const t = TIEBREAK.find((c) => c.re.test(sentence));
53428
- if (t) return t.type;
53428
+ if (t && isValidEdge(sourceLabel, t.type, targetLabel2).ok) return t.type;
53429
53429
  }
53430
53430
  return "RELATES_TO";
53431
53431
  }
@@ -56155,7 +56155,7 @@ function watchCensusLine(c = watchCensus()) {
56155
56155
  }
56156
56156
 
56157
56157
  // src/engine.ts
56158
- var DAEMON_VERSION = true ? "2.0.2-dev.873" : "2.0.0-alpha.0";
56158
+ var DAEMON_VERSION = true ? "2.0.2-dev.876" : "2.0.0-alpha.0";
56159
56159
  var IGNORED_PATH = /[\\/](?:\.git|node_modules|\.errata|\.claude|\.codex|\.cursor|\.turbo|\.next|dist|coverage|test-results|playwright-report|__pycache__)(?:[\\/]|$)/;
56160
56160
  var IGNORED_NOISE = /castalia\.db|eventlog\.sqlite|turn-cursors/;
56161
56161
  var GIT_OP_MUTE_MS = 4e3;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inerrata-corporation/errata",
3
- "version": "2.0.2-dev.873",
3
+ "version": "2.0.2-dev.876",
4
4
  "description": "errata - local-first observation engine for AI coding agents",
5
5
  "type": "module",
6
6
  "bin": {