@componentor/fs 3.0.12 → 3.0.13

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 +5 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -570,6 +570,11 @@ Make sure `opfsSync` is enabled (it's `true` by default). Files are mirrored to
570
570
 
571
571
  ## Changelog
572
572
 
573
+ ### v3.0.13 (2026)
574
+
575
+ **Fixes:**
576
+ - Revert `.d.ts` extension override in `outExtension` — `dts: true` handles it correctly
577
+
573
578
  ### v3.0.12 (2026)
574
579
 
575
580
  **Fixes:**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@componentor/fs",
3
- "version": "3.0.12",
3
+ "version": "3.0.13",
4
4
  "description": "High-performance OPFS-based Node.js fs polyfill with true sync API, VFS binary format, and bidirectional OPFS mirroring",
5
5
  "license": "MIT",
6
6
  "author": "Componentor",
@@ -14,10 +14,10 @@
14
14
  "homepage": "https://github.com/componentor/fs#readme",
15
15
  "type": "module",
16
16
  "module": "./dist/index.js",
17
- "types": "./dist/index.d.ts",
17
+ "types": "./dist/index.d.mts",
18
18
  "exports": {
19
19
  ".": {
20
- "types": "./dist/index.d.ts",
20
+ "types": "./dist/index.d.mts",
21
21
  "import": "./dist/index.js"
22
22
  },
23
23
  "./sw": "./dist/workers/service.worker.js"