@rlvt/crypt 2.2.0 → 2.4.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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @rlvt/crypt@2.1.0 build /home/runner/work/node-utils-monorepo/node-utils-monorepo/packages/crypt
2
+ > @rlvt/crypt@2.3.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,5 +1,49 @@
1
- ## [config-v4.3.0] - 2026-01-15
1
+ ## [crypt-v2.4.0] - 2026-01-16
2
2
 
3
3
  ### ⚙️ Miscellaneous Tasks
4
4
 
5
- - *(release)* @rlvt/config@4.3.0 [skip ci]
5
+ - Upgrade dependencies (#87) by Tchoupinax
6
+
7
+ ## [eslint-config-v3.21.0] - 2026-01-16
8
+
9
+ ### ⚙️ Miscellaneous Tasks
10
+
11
+ - *(release)* @rlvt/crypt@2.3.0 [skip ci] by rlvt-bot
12
+
13
+ ## [config-v4.4.0] - 2026-01-16
14
+
15
+ ### ⚙️ Miscellaneous Tasks
16
+
17
+ - Remove totally release-it because replaced by script bash by Corentin Filoche
18
+
19
+ ## [crypt-v2.2.0] - 2026-01-15
20
+
21
+ ### 🚀 Features
22
+
23
+ - Migrate crypt package by vmarchaud
24
+
25
+ ### 🐛 Bug Fixes
26
+
27
+ - Import node types by vmarchaud
28
+ - Edit how git cliff is used by Corentin Filoche
29
+
30
+ ### 💼 Other
31
+
32
+ - *(crypt)* Upgrade deps by Michael Inthilith
33
+
34
+ ### ⚙️ Miscellaneous Tasks
35
+
36
+ - Review by vmarchaud
37
+ - Replace tslint with eslint by vmarchaud
38
+ - *(tooling)* Correctly setup linter by vmarchaud
39
+ - *(all)* Make lerna great again by Michael Inthilith
40
+ - Upgrade repo to use pnpm by vmarchaud
41
+ - Lint repo by vmarchaud
42
+ - Fix release config by vmarchaud
43
+ - Upgrade release-it config for several packages by Corentin Filoche
44
+ - Harmonize configs by Corentin Filoche
45
+ - Optimize the matrix to build in parallel (#81) by Tchoupinax
46
+ - Try to publish crypt by Corentin Filoche
47
+ - Add publication to npm package by Corentin Filoche
48
+ - *(release)* @rlvt/crypt@2.2.0 [skip ci] by rlvt-bot
49
+
package/eslint.config.mjs CHANGED
@@ -1,7 +1,5 @@
1
- import rlvt from '../eslint-config/index.mjs'
1
+ import rlvt from '@rlvt/eslint-config'
2
2
 
3
3
  export default rlvt.concat({
4
4
  files: ['**/*.ts'],
5
- ignores: ['**/example/*.ts']
6
5
  })
7
-
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rlvt/crypt",
3
- "version": "2.2.0",
4
- "description": "Crypt functions (encrypt/decrypt)",
3
+ "version": "2.4.0",
4
+ "author": "Reelevant Team <dev@reelevant.com>",
5
5
  "main": "build/index.js",
6
6
  "engines": {
7
7
  "node": ">= 20"
@@ -13,13 +13,11 @@
13
13
  "build": "npx tsc --project .",
14
14
  "prepublish": "pnpm build"
15
15
  },
16
- "keywords": [],
17
- "author": "Reelevant",
18
16
  "devDependencies": {
19
- "@types/node": "^22.19.3",
20
- "ava": "^6.4.1",
21
- "release-it": "19.2.3",
22
- "ts-node": "^10.9.2"
17
+ "@rlvt/eslint-config": "3.21.0",
18
+ "@types/node": "22.19.3",
19
+ "ava": "6.4.1",
20
+ "ts-node": "10.9.2"
23
21
  },
24
22
  "ava": {
25
23
  "files": [
package/.release-it.json DELETED
@@ -1,23 +0,0 @@
1
- {
2
- "$schema": "https://unpkg.com/release-it@19/schema/release-it.json",
3
- "increment": "minor",
4
- "git": {
5
- "changelog": "git-cliff",
6
- "commit": true,
7
- "commitMessage": "chore(release): @rlvt/crypt@${version} [skip ci]",
8
- "push": true,
9
- "requireCleanWorkingDir": false,
10
- "tag": true,
11
- "tagName": "crypt-v${version}"
12
- },
13
- "github": {
14
- "release": true,
15
- "releaseName": "@rlvt/crypt v${version}"
16
- },
17
- "npm": {
18
- "publish": true
19
- },
20
- "hooks": {
21
- "after:bump": "git-cliff -o CHANGELOG.md"
22
- }
23
- }