@rlvt/crypt 2.8.0 → 2.10.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +4 -3
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## [config-v4.11.0] - 2026-02-11
|
|
2
|
+
|
|
3
|
+
### ⚙️ Miscellaneous Tasks
|
|
4
|
+
|
|
5
|
+
- Add autoformat in CI (#138) by Tchoupinax
|
|
6
|
+
|
|
7
|
+
## [eslint-config-v3.28.0] - 2026-02-05
|
|
8
|
+
|
|
9
|
+
### ⚙️ Miscellaneous Tasks
|
|
10
|
+
|
|
11
|
+
- *(release)* @rlvt/crypt@2.9.0 [skip ci] by rlvt-bot
|
|
12
|
+
|
|
13
|
+
## [http-v1.24.0] - 2026-02-04
|
|
14
|
+
|
|
15
|
+
### ⚙️ Miscellaneous Tasks
|
|
16
|
+
|
|
17
|
+
- *(release)* @rlvt/crypt@2.8.0 [skip ci] by rlvt-bot
|
|
18
|
+
|
|
1
19
|
## [cache-v0.10.0] - 2026-02-04
|
|
2
20
|
|
|
3
21
|
### ⚙️ Miscellaneous Tasks
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rlvt/crypt",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"author": "Reelevant
|
|
3
|
+
"version": "2.10.0",
|
|
4
|
+
"author": "Reelevant team <dev@reelevant.com>",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"main": "build/index.js",
|
|
7
7
|
"engines": {
|
|
@@ -14,10 +14,11 @@
|
|
|
14
14
|
"build": "npx tsc --project .",
|
|
15
15
|
"prepublish": "pnpm build",
|
|
16
16
|
"lint": "prettier --write . && eslint --fix .",
|
|
17
|
+
"lint:ci": "prettier --write . && eslint --fix . || true",
|
|
17
18
|
"lint:debug": "eslint . --debug | grep -E \"Traversing|Found file|Ignoring\""
|
|
18
19
|
},
|
|
19
20
|
"devDependencies": {
|
|
20
|
-
"@rlvt/eslint-config": "3.
|
|
21
|
+
"@rlvt/eslint-config": "3.28.0",
|
|
21
22
|
"@rlvt/prettier-config": "1.9.0",
|
|
22
23
|
"@types/node": "22",
|
|
23
24
|
"ava": "6.4.1",
|