@rlvt/crypt 2.10.0 → 2.12.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 +2 -2
- package/CHANGELOG.md +30 -0
- package/package.json +7 -7
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
## [crypt-v2.12.0] - 2026-02-26
|
|
2
|
+
|
|
3
|
+
### 🐛 Bug Fixes
|
|
4
|
+
|
|
5
|
+
- *(deps)* Update all non-major dependencies (#162) by renovate[bot]
|
|
6
|
+
- *(deps)* Update all non-major dependencies (#170) by renovate[bot]
|
|
7
|
+
- *(deps)* Update all non-major dependencies (#189) by renovate[bot]
|
|
8
|
+
- *(deps)* Update all non-major dependencies (#193) by renovate[bot]
|
|
9
|
+
|
|
10
|
+
### 💼 Other
|
|
11
|
+
|
|
12
|
+
- Ok by Corentin Filoche
|
|
13
|
+
- Merge 1877a93db5cbccacb7d0f1b9f13dc316746d223b into f837534ea7de372b16bcd1c37662316fc7c51c8c by Tchoupinax
|
|
14
|
+
|
|
15
|
+
### ⚙️ Miscellaneous Tasks
|
|
16
|
+
|
|
17
|
+
- Harmonize packages json, applied rules (#192) by Tchoupinax
|
|
18
|
+
|
|
19
|
+
## [http-v1.31.0] - 2026-02-11
|
|
20
|
+
|
|
21
|
+
### ⚙️ Miscellaneous Tasks
|
|
22
|
+
|
|
23
|
+
- *(release)* @rlvt/crypt@2.11.0 [skip ci] by rlvt-bot
|
|
24
|
+
|
|
25
|
+
## [http-v1.28.0] - 2026-02-11
|
|
26
|
+
|
|
27
|
+
### ⚙️ Miscellaneous Tasks
|
|
28
|
+
|
|
29
|
+
- *(release)* @rlvt/crypt@2.10.0 [skip ci] by rlvt-bot
|
|
30
|
+
|
|
1
31
|
## [config-v4.11.0] - 2026-02-11
|
|
2
32
|
|
|
3
33
|
### ⚙️ 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.12.0",
|
|
4
|
+
"author": "Reelevant Team <dev@reelevant.com>",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"main": "build/index.js",
|
|
7
7
|
"engines": {
|
|
@@ -9,17 +9,17 @@
|
|
|
9
9
|
},
|
|
10
10
|
"prettier": "@rlvt/prettier-config",
|
|
11
11
|
"scripts": {
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
12
|
+
"test": "ava",
|
|
13
|
+
"build": "tsc --project .",
|
|
14
|
+
"clean": "rm -rf build .turbo node_modules",
|
|
15
15
|
"prepublish": "pnpm build",
|
|
16
16
|
"lint": "prettier --write . && eslint --fix .",
|
|
17
17
|
"lint:ci": "prettier --write . && eslint --fix . || true",
|
|
18
18
|
"lint:debug": "eslint . --debug | grep -E \"Traversing|Found file|Ignoring\""
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@rlvt/eslint-config": "
|
|
22
|
-
"@rlvt/prettier-config": "1.
|
|
21
|
+
"@rlvt/eslint-config": "7.4.0",
|
|
22
|
+
"@rlvt/prettier-config": "1.15.0",
|
|
23
23
|
"@types/node": "22",
|
|
24
24
|
"ava": "6.4.1",
|
|
25
25
|
"ts-node": "10.9.2"
|