@rlvt/crypt 2.7.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.
@@ -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.7.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,27 @@
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
+
1
25
  ## [eslint-config-v3.23.0] - 2026-01-20
2
26
 
3
27
  ### ⚙️ 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",
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.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
  },