flat-cache 6.1.4 → 6.1.5
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/dist/index.cjs +3 -3
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -28,8 +28,8 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
28
28
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
29
|
|
|
30
30
|
// src/index.ts
|
|
31
|
-
var
|
|
32
|
-
__export(
|
|
31
|
+
var index_exports = {};
|
|
32
|
+
__export(index_exports, {
|
|
33
33
|
FlatCache: () => FlatCache,
|
|
34
34
|
FlatCacheEvents: () => FlatCacheEvents,
|
|
35
35
|
clearAll: () => clearAll,
|
|
@@ -38,7 +38,7 @@ __export(src_exports, {
|
|
|
38
38
|
createFromFile: () => createFromFile,
|
|
39
39
|
default: () => FlatCacheDefault
|
|
40
40
|
});
|
|
41
|
-
module.exports = __toCommonJS(
|
|
41
|
+
module.exports = __toCommonJS(index_exports);
|
|
42
42
|
var import_node_path = __toESM(require("path"), 1);
|
|
43
43
|
var import_node_fs = __toESM(require("fs"), 1);
|
|
44
44
|
var import_cacheable = require("cacheable");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flat-cache",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.5",
|
|
4
4
|
"description": "A simple key/value storage using files to persist the data",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"flatted": "^3.3.2",
|
|
65
|
-
"hookified": "^1.
|
|
66
|
-
"cacheable": "^1.8.
|
|
65
|
+
"hookified": "^1.6.0",
|
|
66
|
+
"cacheable": "^1.8.7"
|
|
67
67
|
},
|
|
68
68
|
"files": [
|
|
69
69
|
"dist",
|