@componentor/fs 3.0.12 → 3.0.14

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/README.md CHANGED
@@ -570,6 +570,17 @@ Make sure `opfsSync` is enabled (it's `true` by default). Files are mirrored to
570
570
 
571
571
  ## Changelog
572
572
 
573
+ ### v3.0.14 (2026)
574
+
575
+ **Fixes:**
576
+ - Fix `PATH_USED` not persisted after `write()` without flush flag — `commitPending()` now runs unconditionally after every write, preventing "path out of bounds" corruption on reload
577
+ - Repair inode scanner uses the full allocated path table region instead of `PATH_USED` from the superblock — recovers files even when the superblock counter was stale
578
+
579
+ ### v3.0.13 (2026)
580
+
581
+ **Fixes:**
582
+ - Revert `.d.ts` extension override in `outExtension` — `dts: true` handles it correctly
583
+
573
584
  ### v3.0.12 (2026)
574
585
 
575
586
  **Fixes:**
package/dist/index.js CHANGED
@@ -2809,8 +2809,8 @@ var VFSEngine = class {
2809
2809
  tData = tAlloc;
2810
2810
  tInode = tAlloc;
2811
2811
  }
2812
+ this.commitPending();
2812
2813
  if (flags & 1) {
2813
- this.commitPending();
2814
2814
  this.handle.flush();
2815
2815
  }
2816
2816
  const tFlush = this.debug ? performance.now() : 0;