@h3ravel/cache 11.15.0-alpha.16 → 11.17.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.
- package/package.json +3 -5
- package/dist/index.cjs +0 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h3ravel/cache",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.17.0",
|
|
4
4
|
"description": "Cache system with multiple drivers for H3ravel.",
|
|
5
5
|
"h3ravel": {
|
|
6
6
|
"providers": [
|
|
@@ -8,9 +8,7 @@
|
|
|
8
8
|
]
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
|
-
"main": "./dist/index.cjs",
|
|
12
11
|
"types": "./dist/index.d.ts",
|
|
13
|
-
"module": "./dist/index.js",
|
|
14
12
|
"exports": {
|
|
15
13
|
".": {
|
|
16
14
|
"import": "./dist/index.js",
|
|
@@ -41,14 +39,14 @@
|
|
|
41
39
|
"laravel"
|
|
42
40
|
],
|
|
43
41
|
"peerDependencies": {
|
|
44
|
-
"@h3ravel/support": "^
|
|
42
|
+
"@h3ravel/support": "^2.0.0"
|
|
45
43
|
},
|
|
46
44
|
"devDependencies": {
|
|
47
45
|
"typescript": "^6.0.0"
|
|
48
46
|
},
|
|
49
47
|
"scripts": {
|
|
50
48
|
"build": "tsdown --config-loader unrun",
|
|
51
|
-
"dev": "
|
|
49
|
+
"dev": "tsdown --watch --config-loader unrun",
|
|
52
50
|
"start": "node dist/index.js",
|
|
53
51
|
"lint": "eslint . --ext .ts",
|
|
54
52
|
"test": "jest --passWithNoTests",
|
package/dist/index.cjs
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
let _h3ravel_support = require("@h3ravel/support");
|
|
3
|
-
//#region src/Providers/CacheServiceProvider.ts
|
|
4
|
-
/**
|
|
5
|
-
* Cache drivers and utilities.
|
|
6
|
-
*
|
|
7
|
-
* Bind CacheManager.
|
|
8
|
-
* Load drivers (memory, Redis).
|
|
9
|
-
* Provide Cache facade.
|
|
10
|
-
*
|
|
11
|
-
* Auto-Registered if @h3ravel/cache is installed.
|
|
12
|
-
*/
|
|
13
|
-
var CacheServiceProvider = class extends _h3ravel_support.ServiceProvider {
|
|
14
|
-
static priority = 993;
|
|
15
|
-
register() {}
|
|
16
|
-
};
|
|
17
|
-
//#endregion
|
|
18
|
-
exports.CacheServiceProvider = CacheServiceProvider;
|