@livestore/utils-dev 0.0.0-snapshot-c7275861c829aa62bc0783863bb199ffddaad580 → 0.0.0-snapshot-afc82f4b6f7cda419784d9477f26dba90fd3c0d4
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.
|
@@ -42,14 +42,14 @@ export interface DockerComposeOperations {
|
|
|
42
42
|
}
|
|
43
43
|
declare const DockerComposeService_base: Effect.Service.Class<DockerComposeService, "DockerComposeService", {
|
|
44
44
|
readonly scoped: (args: DockerComposeArgs) => Effect.Effect<{
|
|
45
|
-
pull: Effect.Effect<undefined, PlatformError.PlatformError
|
|
46
|
-
start: (options?: StartOptions) => Effect.Effect<void, PlatformError.PlatformError
|
|
47
|
-
stop: Effect.Effect<void, PlatformError.PlatformError
|
|
45
|
+
pull: Effect.Effect<undefined, DockerComposeError | PlatformError.PlatformError, never>;
|
|
46
|
+
start: (options?: StartOptions) => Effect.Effect<void, DockerComposeError | PlatformError.PlatformError, Scope.Scope>;
|
|
47
|
+
stop: Effect.Effect<void, DockerComposeError | PlatformError.PlatformError, never>;
|
|
48
48
|
down: (options?: {
|
|
49
49
|
readonly env?: Record<string, string>;
|
|
50
50
|
readonly volumes?: boolean;
|
|
51
51
|
readonly removeOrphans?: boolean;
|
|
52
|
-
}) => Effect.Effect<void, PlatformError.PlatformError
|
|
52
|
+
}) => Effect.Effect<void, DockerComposeError | PlatformError.PlatformError, never>;
|
|
53
53
|
logs: (options?: LogsOptions) => Stream.Stream<string, DockerComposeError, never>;
|
|
54
54
|
projectName: string;
|
|
55
55
|
}, never, Scope.Scope | CommandExecutor.CommandExecutor>;
|
|
@@ -52,7 +52,7 @@ declare const WranglerDevServerService_base: Effect.Service.Class<WranglerDevSer
|
|
|
52
52
|
readonly scoped: (args: StartWranglerDevServerArgs) => Effect.Effect<{
|
|
53
53
|
port: number;
|
|
54
54
|
url: string;
|
|
55
|
-
}, WranglerDevServerError, import("effect/Scope").Scope |
|
|
55
|
+
}, WranglerDevServerError, import("effect/Scope").Scope | FileSystem.FileSystem | HttpClient.HttpClient>;
|
|
56
56
|
}>;
|
|
57
57
|
/**
|
|
58
58
|
* WranglerDevServer as an Effect.Service.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@livestore/utils-dev",
|
|
3
|
-
"version": "0.0.0-snapshot-
|
|
3
|
+
"version": "0.0.0-snapshot-afc82f4b6f7cda419784d9477f26dba90fd3c0d4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"./src/node-vitest/global.ts",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@opentelemetry/sdk-trace-base": "2.2.0",
|
|
23
23
|
"@opentelemetry/sdk-trace-node": "2.2.0",
|
|
24
24
|
"wrangler": "4.42.2",
|
|
25
|
-
"@livestore/utils": "0.0.0-snapshot-
|
|
25
|
+
"@livestore/utils": "0.0.0-snapshot-afc82f4b6f7cda419784d9477f26dba90fd3c0d4"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {},
|
|
28
28
|
"files": [
|