@inerrata-corporation/errata 2.0.2-dev.926 → 2.0.2-dev.930
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 +6 -1
- package/package.json +1 -1
package/errata.mjs
CHANGED
|
@@ -56192,7 +56192,7 @@ function createLivenessWatch(deps) {
|
|
|
56192
56192
|
}
|
|
56193
56193
|
|
|
56194
56194
|
// src/engine.ts
|
|
56195
|
-
var DAEMON_VERSION = true ? "2.0.2-dev.
|
|
56195
|
+
var DAEMON_VERSION = true ? "2.0.2-dev.930" : "2.0.0-alpha.0";
|
|
56196
56196
|
var IGNORED_PATH = /[\\/](?:\.git|node_modules|\.errata|\.claude|\.codex|\.cursor|\.turbo|\.next|dist|coverage|test-results|playwright-report|__pycache__)(?:[\\/]|$)/;
|
|
56197
56197
|
var IGNORED_NOISE = /castalia\.db|eventlog\.sqlite|turn-cursors/;
|
|
56198
56198
|
var GIT_OP_MUTE_MS = 4e3;
|
|
@@ -57131,6 +57131,7 @@ function createWorkspaceEngine(opts) {
|
|
|
57131
57131
|
const threads = sessionThreads.get(sessionId) ?? /* @__PURE__ */ new Map();
|
|
57132
57132
|
sessionThreads.set(sessionId, threads);
|
|
57133
57133
|
for (const p of plan.problems) {
|
|
57134
|
+
tagsSeen++;
|
|
57134
57135
|
const anchorPath = p.location?.path ?? editedTurnFile;
|
|
57135
57136
|
const anchorProvenance = p.location?.path ? "witnessed" : "edited";
|
|
57136
57137
|
const hintPath = anchorPath ? void 0 : turnFile ?? wf;
|
|
@@ -57173,6 +57174,10 @@ function createWorkspaceEngine(opts) {
|
|
|
57173
57174
|
deriveContextFromStatement(store, r.problemId, p.statement, t);
|
|
57174
57175
|
} catch {
|
|
57175
57176
|
}
|
|
57177
|
+
} else if (r.rejected) {
|
|
57178
|
+
tagsRejected++;
|
|
57179
|
+
} else {
|
|
57180
|
+
tagsRestated++;
|
|
57176
57181
|
}
|
|
57177
57182
|
}
|
|
57178
57183
|
for (const uf of plan.unresolvedFixes) {
|