@rlvt/crypt 2.7.0 → 2.9.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.
@@ -0,0 +1,21 @@
1
+ *.json
2
+ *.lock
3
+ *.svg
4
+ *.xml
5
+ .dockerignore
6
+ .npmignore
7
+ .prettierignore
8
+ .turbo
9
+ .yalc
10
+
11
+ **/build/**
12
+ **/dist/**
13
+
14
+ # Possibly not correct?
15
+ swagger.yaml
16
+
17
+ # Errors
18
+ tsconfig.json
19
+
20
+ CHANGELOG.md
21
+ README.md
@@ -1,4 +1,4 @@
1
1
 
2
- > @rlvt/crypt@2.6.0 build /home/runner/work/node-utils-monorepo/node-utils-monorepo/packages/crypt
2
+ > @rlvt/crypt@2.8.0 build /home/runner/work/node-utils-monorepo/node-utils-monorepo/packages/crypt
3
3
  > npx tsc --project .
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,3 +1,33 @@
1
+ ## [http-v1.24.0] - 2026-02-04
2
+
3
+ ### ⚙️ Miscellaneous Tasks
4
+
5
+ - *(release)* @rlvt/crypt@2.8.0 [skip ci] by rlvt-bot
6
+
7
+ ## [cache-v0.10.0] - 2026-02-04
8
+
9
+ ### ⚙️ Miscellaneous Tasks
10
+
11
+ - Confire all npmignore the same way (#124) by Tchoupinax
12
+
13
+ ## [eslint-config-v3.27.0] - 2026-01-29
14
+
15
+ ### ⚙️ Miscellaneous Tasks
16
+
17
+ - *(release)* @rlvt/crypt@2.7.0 [skip ci] by rlvt-bot
18
+
19
+ ## [cache-v0.9.0] - 2026-01-29
20
+
21
+ ### ⚙️ Miscellaneous Tasks
22
+
23
+ - Add static version for node types and upgrade deps (#108) by Tchoupinax
24
+
25
+ ## [config-v4.7.0] - 2026-01-28
26
+
27
+ ### ⚙️ Miscellaneous Tasks
28
+
29
+ - *(cache,config,crypt,http,logging)* Update eslint/prettier config and apply by Corentin Filoche
30
+
1
31
  ## [eslint-config-v3.23.0] - 2026-01-20
2
32
 
3
33
  ### ⚙️ Miscellaneous Tasks
package/eslint.config.mjs CHANGED
@@ -1,5 +1,3 @@
1
1
  import rlvt from '@rlvt/eslint-config'
2
2
 
3
- export default rlvt.concat({
4
- files: ['**/*.ts'],
5
- })
3
+ export default rlvt
package/package.json CHANGED
@@ -1,21 +1,25 @@
1
1
  {
2
2
  "name": "@rlvt/crypt",
3
- "version": "2.7.0",
4
- "author": "Reelevant Team <dev@reelevant.com>",
3
+ "version": "2.9.0",
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.22.0",
18
- "@types/node": "22.19.7",
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
  },