@lmzhen/dsh-evolution-state-json 0.3.59 → 0.3.60

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/lib/index.js +1 -0
  2. package/package.json +7 -7
package/lib/index.js CHANGED
@@ -60,6 +60,7 @@ async function quarantine(io, root, file, raw, reason) {
60
60
  let preservedNote = `; original preserved at ${dest} — inspect and fix it, then retry.`;
61
61
  try {
62
62
  await io().writeText(dest, raw);
63
+ corruptWritten.delete(file);
63
64
  } catch (writeError) {
64
65
  preservedNote = `; the quarantine copy at ${dest} FAILED to write (${writeError instanceof Error ? writeError.message : String(writeError)}) — the original file is left in place.`;
65
66
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-state-json",
3
3
  "description": "JSON-file evolution state provider over the IO seam (community build)",
4
- "version": "0.3.59",
4
+ "version": "0.3.60",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -31,18 +31,18 @@
31
31
  "license": "MIT",
32
32
  "dependencies": {
33
33
  "@deepseek-ai/schemastery": "^3.18.1",
34
- "@lmzhen/dsh-evolution-core": "^0.3.59"
34
+ "@lmzhen/dsh-evolution-core": "^0.3.60"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
38
38
  "@deepseek-ai/cordis": "^4.0.1",
39
- "@lmzhen/dsh-evolution-io": "^0.3.59",
40
- "@lmzhen/dsh-evolution-state-storage": "^0.3.59"
39
+ "@lmzhen/dsh-evolution-io": "^0.3.60",
40
+ "@lmzhen/dsh-evolution-state-storage": "^0.3.60"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
44
- "@lmzhen/dsh-evolution-io": "^0.3.59",
45
- "@lmzhen/dsh-evolution-state-storage": "^0.3.59",
46
- "@lmzhen/dsh-evolution-io-node": "^0.3.59"
44
+ "@lmzhen/dsh-evolution-io": "^0.3.60",
45
+ "@lmzhen/dsh-evolution-state-storage": "^0.3.60",
46
+ "@lmzhen/dsh-evolution-io-node": "^0.3.60"
47
47
  }
48
48
  }