@effect-app/cli 2.0.1-beta.2 → 2.0.1-beta.4
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/CHANGELOG.md +12 -0
- package/dist/gist.d.ts +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @effect-app/cli
|
|
2
2
|
|
|
3
|
+
## 2.0.1-beta.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 601a1ff: update effect to 4.0.0-beta.37 and drop the Schema Class disableValidation workaround now that the patched effect schema covers it
|
|
8
|
+
|
|
9
|
+
## 2.0.1-beta.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 75c72ee: update effect to 4.0.0-beta.36, adapt to Option<A> revert from A | undefined
|
|
14
|
+
|
|
3
15
|
## 2.0.1-beta.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/gist.d.ts
CHANGED
|
@@ -380,12 +380,12 @@ declare class GHGistService extends GHGistService_base {
|
|
|
380
380
|
declare const GistHandler_base: ServiceMap.ServiceClass<GistHandler, "GistHandler", {
|
|
381
381
|
handler: (args_0: {
|
|
382
382
|
YAMLPath: string;
|
|
383
|
-
}) => Effect.Effect<undefined, import("effect/PlatformError").PlatformError | GistError |
|
|
383
|
+
}) => Effect.Effect<undefined, import("effect/PlatformError").PlatformError | GistError | Config.ConfigError | GistYAMLError | Schema.SchemaError | GistCacheOfCompanyNotFound, never>;
|
|
384
384
|
}> & {
|
|
385
385
|
readonly make: Effect.Effect<{
|
|
386
386
|
handler: (args_0: {
|
|
387
387
|
YAMLPath: string;
|
|
388
|
-
}) => Effect.Effect<undefined, import("effect/PlatformError").PlatformError | GistError |
|
|
388
|
+
}) => Effect.Effect<undefined, import("effect/PlatformError").PlatformError | GistError | Config.ConfigError | GistYAMLError | Schema.SchemaError | GistCacheOfCompanyNotFound, never>;
|
|
389
389
|
}, never, Path.Path | FileSystem.FileSystem | GHGistService>;
|
|
390
390
|
};
|
|
391
391
|
export declare class GistHandler extends GistHandler_base {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/cli",
|
|
3
|
-
"version": "2.0.1-beta.
|
|
3
|
+
"version": "2.0.1-beta.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"effect-app-cli": "./bin.js"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@effect/platform-node": "^4.0.0-beta.
|
|
13
|
-
"effect": "^4.0.0-beta.
|
|
12
|
+
"@effect/platform-node": "^4.0.0-beta.37",
|
|
13
|
+
"effect": "^4.0.0-beta.37",
|
|
14
14
|
"js-yaml": "4.1.1",
|
|
15
15
|
"node-watch": "^0.7.4"
|
|
16
16
|
},
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"json5": "^2.2.3",
|
|
21
21
|
"typescript": "~5.9.3",
|
|
22
22
|
"vitest": "^4.0.18",
|
|
23
|
-
"
|
|
24
|
-
"effect-app": "
|
|
23
|
+
"effect-app": "4.0.0-beta.27",
|
|
24
|
+
"@effect-app/eslint-shared-config": "0.5.7-beta.2"
|
|
25
25
|
},
|
|
26
26
|
"typesVersions": {
|
|
27
27
|
"*": {
|