@h3ravel/cache 11.0.13 → 11.0.15
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h3ravel/cache",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.15",
|
|
4
4
|
"description": "Cache system with multiple drivers for H3ravel.",
|
|
5
5
|
"h3ravel": {
|
|
6
6
|
"providers": [
|
|
@@ -8,15 +8,15 @@
|
|
|
8
8
|
]
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
|
-
"main": "./dist/index.
|
|
12
|
-
"types": "./dist/index.d.
|
|
13
|
-
"module": "./dist/index.
|
|
11
|
+
"main": "./dist/index.cjs",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"module": "./dist/index.js",
|
|
14
14
|
"exports": {
|
|
15
15
|
".": {
|
|
16
|
-
"
|
|
17
|
-
"import": "./dist/index.mjs",
|
|
16
|
+
"import": "./dist/index.js",
|
|
18
17
|
"require": "./dist/index.cjs"
|
|
19
|
-
}
|
|
18
|
+
},
|
|
19
|
+
"./*": "./*"
|
|
20
20
|
},
|
|
21
21
|
"files": [
|
|
22
22
|
"dist"
|
|
@@ -41,15 +41,16 @@
|
|
|
41
41
|
"laravel"
|
|
42
42
|
],
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@h3ravel/core": "^1.21.
|
|
44
|
+
"@h3ravel/core": "^1.21.5"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"typescript": "^5.4.0"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
|
+
"barrel": "barrelsby --directory src --delete --singleQuotes",
|
|
50
51
|
"build": "tsdown --config-loader unconfig",
|
|
51
52
|
"dev": "tsx watch src/index.ts",
|
|
52
|
-
"start": "node dist/index.
|
|
53
|
+
"start": "node dist/index.js",
|
|
53
54
|
"lint": "eslint . --ext .ts",
|
|
54
55
|
"test": "jest --passWithNoTests",
|
|
55
56
|
"version-patch": "pnpm version patch"
|
package/dist/index.d.mts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/// <reference path="./app.globals.d.ts" />
|
|
2
|
-
import { ServiceProvider } from "@h3ravel/core";
|
|
3
|
-
|
|
4
|
-
//#region src/Providers/CacheServiceProvider.d.ts
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* Cache drivers and utilities.
|
|
8
|
-
*
|
|
9
|
-
* Bind CacheManager.
|
|
10
|
-
* Load drivers (memory, Redis).
|
|
11
|
-
* Provide Cache facade.
|
|
12
|
-
*
|
|
13
|
-
* Auto-Registered if @h3ravel/cache is installed.
|
|
14
|
-
*/
|
|
15
|
-
declare class CacheServiceProvider extends ServiceProvider {
|
|
16
|
-
static priority: number;
|
|
17
|
-
register(): void;
|
|
18
|
-
}
|
|
19
|
-
//#endregion
|
|
20
|
-
export { CacheServiceProvider };
|
|
File without changes
|
|
File without changes
|