@synstack/fs-cache 1.4.10 → 1.4.11
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 +0 -3
- package/package.json +4 -4
package/README.md
CHANGED
@@ -2,9 +2,6 @@
|
|
2
2
|
|
3
3
|
Human-friendly file system caching
|
4
4
|
|
5
|
-
> [!WARNING]
|
6
|
-
> This package is included in the [@synstack/synscript](https://github.com/pAIrprogio/synscript) package. It is not recommended to install both packages at the same time.
|
7
|
-
|
8
5
|
## What is it for?
|
9
6
|
|
10
7
|
Sometimes you need to cache expensive function results between program runs. This package makes it easy to cache function outputs to disk with type safety while keeping the file system clean and cache entries readable.
|
package/package.json
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
"publishConfig": {
|
5
5
|
"access": "public"
|
6
6
|
},
|
7
|
-
"version": "1.4.
|
7
|
+
"version": "1.4.11",
|
8
8
|
"description": "Human-friendly file system caching",
|
9
9
|
"keywords": [
|
10
10
|
"cache",
|
@@ -44,17 +44,17 @@
|
|
44
44
|
}
|
45
45
|
},
|
46
46
|
"dependencies": {
|
47
|
-
"@synstack/fs": "1.4.
|
47
|
+
"@synstack/fs": "1.4.10"
|
48
48
|
},
|
49
49
|
"devDependencies": {
|
50
50
|
"@types/node": "^22.10.1",
|
51
51
|
"tsup": "^8.4.0",
|
52
|
-
"typescript": "^5.
|
52
|
+
"typescript": "^5.8.2"
|
53
53
|
},
|
54
54
|
"files": [
|
55
55
|
"src/**/*.ts",
|
56
56
|
"!src/**/*.test.ts",
|
57
57
|
"dist/**/*"
|
58
58
|
],
|
59
|
-
"gitHead": "
|
59
|
+
"gitHead": "4aae6e86f7664e5b928ecb3a492ec035307168d1"
|
60
60
|
}
|