@evident-ai/runner-synchroniser 3.4.1-dev.ecb0236 → 3.5.0

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/README.md +1 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -250,8 +250,7 @@ and it can never repair corruption at a higher compaction level.
250
250
 
251
251
  `EVIDENT_ON_UNUSABLE_REPLICA` is a `runner/docker-images/fargate` (entrypoint) variable translated into the flag above at boot — this CLI never reads it, so it has no row in this README's Configuration table below; see [the Fargate image README](../docker-images/fargate/README.md#when-the-replica-is-unusable-evident_on_unusable_replica). An unrecognised value (including wrong casing, e.g. `Prune`) exits `2`, outside `entrypoint.sh`'s `0|10|20|30|31|32|33` allow-list — a typo **crash-loops the task on attempt 1** rather than falling back to `prune`, and also logs the misleading "credential persistence is DEGRADED" ERROR.
252
252
 
253
- See `specs/local-runner.feature`'s "Recovering session history at startup" scenarios for
254
- the behavioural anchor (31 comes online, 30 does not).
253
+ The behavioural anchor is explicit: **31 comes online, 30 does not**.
255
254
 
256
255
  ### `session-db-verify`
257
256
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evident-ai/runner-synchroniser",
3
- "version": "3.4.1-dev.ecb0236",
3
+ "version": "3.5.0",
4
4
  "description": "Restores and syncs the Evident runner's OpenCode credential stores (and litestream config) to an object store, so a runner survives task replacement with almost no state loss.",
5
5
  "type": "module",
6
6
  "main": "./dist/cli.js",
@@ -11,7 +11,7 @@
11
11
  "dist"
12
12
  ],
13
13
  "scripts": {
14
- "build": "tsup",
14
+ "build": "tsup && node -e 'const m=require(\"./package.json\").main; if (!require(\"node:fs\").existsSync(m)) { console.error(`build produced no ${m}`); process.exit(1); }'",
15
15
  "typecheck": "tsc --noEmit",
16
16
  "lint": "eslint 'src/**/*.ts'",
17
17
  "test": "vitest run",