file-entry-cache 10.1.1 → 10.1.3

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 (1) hide show
  1. package/package.json +7 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "file-entry-cache",
3
- "version": "10.1.1",
3
+ "version": "10.1.3",
4
4
  "description": "A lightweight cache for file metadata, ideal for processes that work on a specific set of files and only need to reprocess files that have changed since the last run",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -29,16 +29,16 @@
29
29
  "cache"
30
30
  ],
31
31
  "devDependencies": {
32
- "@types/node": "^22.15.30",
33
- "@vitest/coverage-v8": "^3.2.2",
32
+ "@types/node": "^24.1.0",
33
+ "@vitest/coverage-v8": "^3.2.4",
34
34
  "rimraf": "^6.0.1",
35
35
  "tsup": "^8.5.0",
36
36
  "typescript": "^5.8.3",
37
- "vitest": "^3.2.2",
38
- "xo": "^1.1.0"
37
+ "vitest": "^3.2.4",
38
+ "xo": "^1.2.1"
39
39
  },
40
40
  "dependencies": {
41
- "flat-cache": "^6.1.10"
41
+ "flat-cache": "^6.1.12"
42
42
  },
43
43
  "files": [
44
44
  "dist",
@@ -48,7 +48,7 @@
48
48
  "build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
49
49
  "prepublish": "pnpm build",
50
50
  "test": "xo --fix && vitest run --coverage",
51
- "test:ci": "xo && vitest run",
51
+ "test:ci": "xo && vitest run --coverage",
52
52
  "clean": "rimraf ./dist ./coverage ./node_modules"
53
53
  }
54
54
  }