@nwire/storage-fs 0.8.0 → 0.8.17

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.
@@ -7,7 +7,7 @@ import { afterEach, beforeEach, describe, expect, it } from "vitest";
7
7
  import { mkdtempSync, rmSync } from "node:fs";
8
8
  import { tmpdir } from "node:os";
9
9
  import { join } from "node:path";
10
- import { fsStorage } from "../storage-fs";
10
+ import { fsStorage } from "../storage-fs.js";
11
11
  import { StorageObjectNotFoundError, StorageUnsupportedError } from "@nwire/storage";
12
12
  describe("fsStorage", () => {
13
13
  let dir;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nwire/storage-fs",
3
- "version": "0.8.0",
3
+ "version": "0.8.17",
4
4
  "description": "Nwire — local filesystem storage adapter. Implements the Storage contract against a base directory. Suitable for development, single-node deployments, and tests.",
5
5
  "keywords": [
6
6
  "adapter",
@@ -28,7 +28,7 @@
28
28
  "access": "public"
29
29
  },
30
30
  "dependencies": {
31
- "@nwire/storage": "0.8.0"
31
+ "@nwire/storage": "0.8.17"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/node": "^22.19.9",
@@ -36,7 +36,7 @@
36
36
  "vitest": "^4.1.6"
37
37
  },
38
38
  "scripts": {
39
- "build": "tsc",
39
+ "build": "tsc && node ../../scripts/fix-dist-extensions.mjs dist",
40
40
  "dev": "tsc --watch",
41
41
  "typecheck": "tsc --noEmit"
42
42
  }