@resolid/cache-file 1.0.1 → 1.1.0

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 +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -23,7 +23,7 @@ bun add @resolid/cache @resolid/cache-file
23
23
 
24
24
  ```ts
25
25
  import { Cacher } from "@resolid/cache";
26
- import { FileCache } from "@resolid/cache";
26
+ import { FileCache } from "@resolid/cache-file";
27
27
 
28
28
  const cache = new Cacher({ store: new FileCache("./.tmp/cache"), defaultTtl: 1000 });
29
29
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolid/cache-file",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "private": false,
5
5
  "description": "File Cache store for @resolid/cache",
6
6
  "keywords": [
@@ -38,10 +38,10 @@
38
38
  "provenance": true
39
39
  },
40
40
  "devDependencies": {
41
- "tsdown": "^0.21.5"
41
+ "tsdown": "^0.22.0"
42
42
  },
43
43
  "peerDependencies": {
44
- "@resolid/cache": "^1.0.1"
44
+ "@resolid/cache": "^1.1.0"
45
45
  },
46
46
  "engines": {
47
47
  "node": "^22.13.0 || >=24"