@h3ravel/cache 1.0.0 → 3.0.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/CHANGELOG.md +22 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @h3ravel/cache
|
|
2
2
|
|
|
3
|
+
## 3.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- rebuild all dependencies
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @h3ravel/core@0.5.0
|
|
13
|
+
|
|
14
|
+
## 2.0.0
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- a27f452: chore: fix all linting issues.
|
|
19
|
+
- c906050: chore: migrate tests suite to jest
|
|
20
|
+
- Updated dependencies [8ceb2c1]
|
|
21
|
+
- Updated dependencies [a27f452]
|
|
22
|
+
- Updated dependencies [c906050]
|
|
23
|
+
- @h3ravel/core@0.4.0
|
|
24
|
+
|
|
3
25
|
## 1.0.0
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h3ravel/cache",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Cache system with multiple drivers for H3ravel.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"access": "public"
|
|
10
10
|
},
|
|
11
11
|
"peerDependencies": {
|
|
12
|
-
"@h3ravel/core": "0.
|
|
12
|
+
"@h3ravel/core": "0.5.0"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"typescript": "^5.4.0"
|
|
@@ -20,6 +20,6 @@
|
|
|
20
20
|
"dev": "tsx watch src/index.ts",
|
|
21
21
|
"start": "node dist/index.js",
|
|
22
22
|
"lint": "eslint . --ext .ts",
|
|
23
|
-
"test": "
|
|
23
|
+
"test": "jest --passWithNoTests"
|
|
24
24
|
}
|
|
25
25
|
}
|