@rlvt/crypt 2.19.0 → 2.21.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.18.0 build /home/runner-4/_work/node-utils-monorepo/node-utils-monorepo/packages/crypt
2
+ > @rlvt/crypt@2.20.0 build /home/runner-6/_work/node-utils-monorepo/node-utils-monorepo/packages/crypt
3
3
  > tsc --project .
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ ## [cache-v0.28.0] - 2026-03-26
2
+
3
+ ### ⚙️ Miscellaneous Tasks
4
+
5
+ - Repair typescript build (following vitest migrations) (#218) by Tchoupinax
6
+
7
+ ## [events-stream-v1.25.0] - 2026-03-26
8
+
9
+ ### ⚙️ Miscellaneous Tasks
10
+
11
+ - *(release)* @rlvt/crypt@2.20.0 [skip ci] by rlvt-bot
12
+
13
+ ## [cache-v0.27.0] - 2026-03-26
14
+
15
+ ### ⚙️ Miscellaneous Tasks
16
+
17
+ - Migrate ava to vitest (#217) by Tchoupinax
18
+
19
+ ## [eslint-config-v7.11.0] - 2026-03-25
20
+
21
+ ### ⚙️ Miscellaneous Tasks
22
+
23
+ - *(release)* @rlvt/crypt@2.19.0 [skip ci] by rlvt-bot
24
+
1
25
  ## [eslint-config-v7.10.0] - 2026-03-25
2
26
 
3
27
  ### ⚙️ Miscellaneous Tasks
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rlvt/crypt",
3
- "version": "2.19.0",
3
+ "version": "2.21.0",
4
4
  "author": "reelevant team <dev@reelevant.com>",
5
5
  "license": "UNLICENSED",
6
6
  "main": "build/index.js",
@@ -9,9 +9,9 @@
9
9
  },
10
10
  "prettier": "@rlvt/prettier-config",
11
11
  "scripts": {
12
- "test": "ava",
12
+ "test": "vitest run",
13
13
  "build": "tsc --project .",
14
- "clean": "rm -rf build .turbo node_modules",
14
+ "clean": "rm -rf build .turbo node_modules coverage",
15
15
  "prepublish": "pnpm build",
16
16
  "lint": "prettier --write . && eslint --fix .",
17
17
  "lint:ci": "prettier --write . && eslint --fix . || true",
@@ -21,18 +21,7 @@
21
21
  "@rlvt/eslint-config": "7.8.0",
22
22
  "@rlvt/prettier-config": "1.19.0",
23
23
  "@types/node": "22",
24
- "ava": "7.0.0",
25
- "ts-node": "10.9.2"
26
- },
27
- "ava": {
28
- "files": [
29
- "tests/*.test.ts"
30
- ],
31
- "extensions": [
32
- "ts"
33
- ],
34
- "require": [
35
- "ts-node/register/transpile-only"
36
- ]
24
+ "vitest": "3.0.9",
25
+ "@vitest/coverage-v8": "3.0.9"
37
26
  }
38
27
  }
@@ -0,0 +1,11 @@
1
+ import { defineConfig } from 'vitest/config'
2
+
3
+ export default defineConfig({
4
+ test: {
5
+ coverage: {
6
+ enabled: true,
7
+ provider: 'v8',
8
+ reporter: ['text', 'lcov', 'json-summary'],
9
+ },
10
+ },
11
+ })