@rlvt/crypt 2.6.0 → 2.8.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/.prettierignore +21 -0
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +30 -0
- package/eslint.config.mjs +1 -3
- package/package.json +9 -5
package/.prettierignore
ADDED
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
## [cache-v0.10.0] - 2026-02-04
|
|
2
|
+
|
|
3
|
+
### ⚙️ Miscellaneous Tasks
|
|
4
|
+
|
|
5
|
+
- Confire all npmignore the same way (#124) by Tchoupinax
|
|
6
|
+
|
|
7
|
+
## [eslint-config-v3.27.0] - 2026-01-29
|
|
8
|
+
|
|
9
|
+
### ⚙️ Miscellaneous Tasks
|
|
10
|
+
|
|
11
|
+
- *(release)* @rlvt/crypt@2.7.0 [skip ci] by rlvt-bot
|
|
12
|
+
|
|
13
|
+
## [cache-v0.9.0] - 2026-01-29
|
|
14
|
+
|
|
15
|
+
### ⚙️ Miscellaneous Tasks
|
|
16
|
+
|
|
17
|
+
- Add static version for node types and upgrade deps (#108) by Tchoupinax
|
|
18
|
+
|
|
19
|
+
## [config-v4.7.0] - 2026-01-28
|
|
20
|
+
|
|
21
|
+
### ⚙️ Miscellaneous Tasks
|
|
22
|
+
|
|
23
|
+
- *(cache,config,crypt,http,logging)* Update eslint/prettier config and apply by Corentin Filoche
|
|
24
|
+
|
|
25
|
+
## [eslint-config-v3.23.0] - 2026-01-20
|
|
26
|
+
|
|
27
|
+
### ⚙️ Miscellaneous Tasks
|
|
28
|
+
|
|
29
|
+
- *(release)* @rlvt/crypt@2.6.0 [skip ci] by rlvt-bot
|
|
30
|
+
|
|
1
31
|
## [crypt-v2.6.0] - 2026-01-20
|
|
2
32
|
|
|
3
33
|
### ⚙️ Miscellaneous Tasks
|
package/eslint.config.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,21 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rlvt/crypt",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.0",
|
|
4
4
|
"author": "Reelevant Team <dev@reelevant.com>",
|
|
5
|
+
"license": "UNLICENSED",
|
|
5
6
|
"main": "build/index.js",
|
|
6
7
|
"engines": {
|
|
7
8
|
"node": ">= 20"
|
|
8
9
|
},
|
|
10
|
+
"prettier": "@rlvt/prettier-config",
|
|
9
11
|
"scripts": {
|
|
10
|
-
"lint": "npx eslint .",
|
|
11
12
|
"pretest": "pnpm lint",
|
|
12
13
|
"test": "npx ava",
|
|
13
14
|
"build": "npx tsc --project .",
|
|
14
|
-
"prepublish": "pnpm build"
|
|
15
|
+
"prepublish": "pnpm build",
|
|
16
|
+
"lint": "prettier --write . && eslint --fix .",
|
|
17
|
+
"lint:debug": "eslint . --debug | grep -E \"Traversing|Found file|Ignoring\""
|
|
15
18
|
},
|
|
16
19
|
"devDependencies": {
|
|
17
|
-
"@rlvt/eslint-config": "3.
|
|
18
|
-
"@
|
|
20
|
+
"@rlvt/eslint-config": "3.26.0",
|
|
21
|
+
"@rlvt/prettier-config": "1.9.0",
|
|
22
|
+
"@types/node": "22",
|
|
19
23
|
"ava": "6.4.1",
|
|
20
24
|
"ts-node": "10.9.2"
|
|
21
25
|
},
|