effect-redis 0.0.28 → 0.0.30
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/dist/index.d.ts +1 -1
- package/package.json +16 -17
- package/src/index.ts +1 -1
- package/src/redis.ts +0 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './redis';
|
|
1
|
+
export * from './redis/index';
|
|
2
2
|
export * from './types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "effect-redis",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.30",
|
|
4
4
|
"description": "Simple Effect wrapper for Redis.",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -11,18 +11,9 @@
|
|
|
11
11
|
"README.md",
|
|
12
12
|
"src"
|
|
13
13
|
],
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build:main": "bun build --minify-syntax --minify-whitespace ./src/index.ts --outdir ./dist --target node --format esm",
|
|
16
|
-
"build:types": "bun tsc --emitDeclarationOnly --outdir ./dist",
|
|
17
|
-
"build": "bun run build:main && bun run build:types",
|
|
18
|
-
"prepublishOnly": "bun run build",
|
|
19
|
-
"test": "vitest run --passWithNoTests",
|
|
20
|
-
"format": "biome format --write ./src",
|
|
21
|
-
"lint": "biome lint ."
|
|
22
|
-
},
|
|
23
14
|
"devDependencies": {
|
|
24
|
-
"@biomejs/biome": "
|
|
25
|
-
"@effect/language-service": "
|
|
15
|
+
"@biomejs/biome": "^2.3.11",
|
|
16
|
+
"@effect/language-service": "^0.72.1",
|
|
26
17
|
"@effect/vitest": "^0.27.0",
|
|
27
18
|
"@redis/bloom": "^5.10.0",
|
|
28
19
|
"@redis/client": "^5.10.0",
|
|
@@ -32,15 +23,23 @@
|
|
|
32
23
|
"@types/bun": "latest",
|
|
33
24
|
"@types/node": "^25.0.3",
|
|
34
25
|
"fast-check": "^4.5.3",
|
|
35
|
-
"vitest": "
|
|
26
|
+
"vitest": "4.0.18"
|
|
36
27
|
},
|
|
37
28
|
"peerDependencies": {
|
|
38
29
|
"redis": "^5.1.0",
|
|
39
30
|
"typescript": "^5"
|
|
40
31
|
},
|
|
41
32
|
"dependencies": {
|
|
42
|
-
"@effect/experimental": "
|
|
43
|
-
"@effect/platform-bun": "
|
|
44
|
-
"effect": "
|
|
33
|
+
"@effect/experimental": "^0.58.0",
|
|
34
|
+
"@effect/platform-bun": "^0.87.0",
|
|
35
|
+
"effect": "3.19.15"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build:main": "bun build --minify-syntax --minify-whitespace ./src/index.ts --outdir ./dist --target node --format esm",
|
|
39
|
+
"build:types": "bun tsc --emitDeclarationOnly --outdir ./dist",
|
|
40
|
+
"build": "bun run build:main && bun run build:types",
|
|
41
|
+
"test": "vitest run --passWithNoTests",
|
|
42
|
+
"format": "biome format --write ./src",
|
|
43
|
+
"lint": "biome lint ."
|
|
45
44
|
}
|
|
46
|
-
}
|
|
45
|
+
}
|
package/src/index.ts
CHANGED
package/src/redis.ts
DELETED