localpreview 0.2.0 → 0.2.2
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/relay-client.d.ts +1 -1
- package/package.json +4 -4
package/dist/relay-client.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export type RelayClientShape = {
|
|
|
9
9
|
declare const RelayClient_base: Context.ServiceClass<RelayClient, "RelayClient", RelayClientShape>;
|
|
10
10
|
export declare class RelayClient extends RelayClient_base {
|
|
11
11
|
}
|
|
12
|
-
export declare const RelayClientLive: Layer.Layer<RelayClient, never,
|
|
12
|
+
export declare const RelayClientLive: Layer.Layer<RelayClient, never, CliConfig | LocalProxy>;
|
|
13
13
|
export declare const isRetryableCloseCode: (code: number) => boolean;
|
|
14
14
|
export {};
|
|
15
15
|
//# sourceMappingURL=relay-client.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "localpreview",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"bin": {
|
|
5
5
|
"localpreview": "./dist/index.js"
|
|
6
6
|
},
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@effect/platform-node": "
|
|
23
|
+
"@effect/platform-node": "beta",
|
|
24
24
|
"@localpreview/protocol": "workspace:*",
|
|
25
|
-
"effect": "
|
|
26
|
-
"ws": "
|
|
25
|
+
"effect": "beta",
|
|
26
|
+
"ws": "latest"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@effect/vitest": "catalog:",
|