@inerrata-corporation/errata 2.0.2-dev.532 → 2.0.2-dev.538

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 +7 -1
  2. package/package.json +1 -1
package/errata.mjs CHANGED
@@ -54206,7 +54206,7 @@ function startLoopLagMonitor(thresholdMs = 1e3) {
54206
54206
  }
54207
54207
 
54208
54208
  // src/engine.ts
54209
- var DAEMON_VERSION = true ? "2.0.2-dev.532" : "2.0.0-alpha.0";
54209
+ var DAEMON_VERSION = true ? "2.0.2-dev.538" : "2.0.0-alpha.0";
54210
54210
  var IGNORED_PATH = /[\\/](?:\.git|node_modules|\.errata|\.claude|\.codex|\.cursor|\.turbo|\.next|dist|coverage|test-results|playwright-report|__pycache__)(?:[\\/]|$)/;
54211
54211
  var IGNORED_NOISE = /castalia\.db|eventlog\.sqlite|turn-cursors/;
54212
54212
  var GIT_OP_MUTE_MS = 4e3;
@@ -58705,6 +58705,12 @@ function shouldConsolidate(args2) {
58705
58705
  }
58706
58706
 
58707
58707
  // src/cli.ts
58708
+ var exitCleanOnEpipe = (err2) => {
58709
+ if (err2.code === "EPIPE") process.exit(0);
58710
+ throw err2;
58711
+ };
58712
+ process.stdout.on("error", exitCleanOnEpipe);
58713
+ process.stderr.on("error", exitCleanOnEpipe);
58708
58714
  var ROOT = process.cwd();
58709
58715
  var argv = process.argv.slice(2);
58710
58716
  var cmd = argv[0] ?? "help";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inerrata-corporation/errata",
3
- "version": "2.0.2-dev.532",
3
+ "version": "2.0.2-dev.538",
4
4
  "description": "errata - local-first observation engine for AI coding agents",
5
5
  "type": "module",
6
6
  "bin": {