@effect/platform-node 4.0.0-beta.74 → 4.0.0-beta.75
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/NodeRuntime.d.ts +9 -9
- package/dist/NodeRuntime.js +3 -3
- package/package.json +4 -4
- package/src/NodeRuntime.ts +9 -9
package/dist/NodeRuntime.d.ts
CHANGED
|
@@ -5,9 +5,9 @@ import type * as Runtime from "effect/Runtime";
|
|
|
5
5
|
*
|
|
6
6
|
* **When to use**
|
|
7
7
|
*
|
|
8
|
-
* Use to run
|
|
9
|
-
*
|
|
10
|
-
*
|
|
8
|
+
* Use to run a Node.js application's main Effect with structured error
|
|
9
|
+
* handling, log management, interrupt support, or advanced teardown
|
|
10
|
+
* capabilities.
|
|
11
11
|
*
|
|
12
12
|
* **Details**
|
|
13
13
|
*
|
|
@@ -30,9 +30,9 @@ export declare const runMain: {
|
|
|
30
30
|
*
|
|
31
31
|
* **When to use**
|
|
32
32
|
*
|
|
33
|
-
* Use to run
|
|
34
|
-
*
|
|
35
|
-
*
|
|
33
|
+
* Use to run a Node.js application's main Effect with structured error
|
|
34
|
+
* handling, log management, interrupt support, or advanced teardown
|
|
35
|
+
* capabilities.
|
|
36
36
|
*
|
|
37
37
|
* **Details**
|
|
38
38
|
*
|
|
@@ -58,9 +58,9 @@ export declare const runMain: {
|
|
|
58
58
|
*
|
|
59
59
|
* **When to use**
|
|
60
60
|
*
|
|
61
|
-
* Use to run
|
|
62
|
-
*
|
|
63
|
-
*
|
|
61
|
+
* Use to run a Node.js application's main Effect with structured error
|
|
62
|
+
* handling, log management, interrupt support, or advanced teardown
|
|
63
|
+
* capabilities.
|
|
64
64
|
*
|
|
65
65
|
* **Details**
|
|
66
66
|
*
|
package/dist/NodeRuntime.js
CHANGED
|
@@ -35,9 +35,9 @@ import * as NodeRuntime from "@effect/platform-node-shared/NodeRuntime";
|
|
|
35
35
|
*
|
|
36
36
|
* **When to use**
|
|
37
37
|
*
|
|
38
|
-
* Use to run
|
|
39
|
-
*
|
|
40
|
-
*
|
|
38
|
+
* Use to run a Node.js application's main Effect with structured error
|
|
39
|
+
* handling, log management, interrupt support, or advanced teardown
|
|
40
|
+
* capabilities.
|
|
41
41
|
*
|
|
42
42
|
* **Details**
|
|
43
43
|
*
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect/platform-node",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "4.0.0-beta.
|
|
4
|
+
"version": "4.0.0-beta.75",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Platform specific implementations for the Node.js runtime",
|
|
7
7
|
"homepage": "https://effect.website",
|
|
@@ -50,18 +50,18 @@
|
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"mime": "^4.1.0",
|
|
52
52
|
"undici": "^8.2.0",
|
|
53
|
-
"@effect/platform-node-shared": "^4.0.0-beta.
|
|
53
|
+
"@effect/platform-node-shared": "^4.0.0-beta.75"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"ioredis": "^5.7.0",
|
|
57
|
-
"effect": "^4.0.0-beta.
|
|
57
|
+
"effect": "^4.0.0-beta.75"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@testcontainers/mysql": "^11.14.0",
|
|
61
61
|
"@testcontainers/postgresql": "^11.14.0",
|
|
62
62
|
"@testcontainers/redis": "^11.14.0",
|
|
63
63
|
"@types/node": "^25.7.0",
|
|
64
|
-
"effect": "^4.0.0-beta.
|
|
64
|
+
"effect": "^4.0.0-beta.75"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"codegen": "effect-utils codegen",
|
package/src/NodeRuntime.ts
CHANGED
|
@@ -38,9 +38,9 @@ import type * as Runtime from "effect/Runtime"
|
|
|
38
38
|
*
|
|
39
39
|
* **When to use**
|
|
40
40
|
*
|
|
41
|
-
* Use to run
|
|
42
|
-
*
|
|
43
|
-
*
|
|
41
|
+
* Use to run a Node.js application's main Effect with structured error
|
|
42
|
+
* handling, log management, interrupt support, or advanced teardown
|
|
43
|
+
* capabilities.
|
|
44
44
|
*
|
|
45
45
|
* **Details**
|
|
46
46
|
*
|
|
@@ -63,9 +63,9 @@ export const runMain: {
|
|
|
63
63
|
*
|
|
64
64
|
* **When to use**
|
|
65
65
|
*
|
|
66
|
-
* Use to run
|
|
67
|
-
*
|
|
68
|
-
*
|
|
66
|
+
* Use to run a Node.js application's main Effect with structured error
|
|
67
|
+
* handling, log management, interrupt support, or advanced teardown
|
|
68
|
+
* capabilities.
|
|
69
69
|
*
|
|
70
70
|
* **Details**
|
|
71
71
|
*
|
|
@@ -93,9 +93,9 @@ export const runMain: {
|
|
|
93
93
|
*
|
|
94
94
|
* **When to use**
|
|
95
95
|
*
|
|
96
|
-
* Use to run
|
|
97
|
-
*
|
|
98
|
-
*
|
|
96
|
+
* Use to run a Node.js application's main Effect with structured error
|
|
97
|
+
* handling, log management, interrupt support, or advanced teardown
|
|
98
|
+
* capabilities.
|
|
99
99
|
*
|
|
100
100
|
* **Details**
|
|
101
101
|
*
|