@effect-app/cli 2.0.1-beta.1 → 2.0.1-beta.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/CHANGELOG.md +8 -0
- package/dist/gist.d.ts +3 -3
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @effect-app/cli
|
|
2
2
|
|
|
3
|
+
## 2.0.1-beta.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1c3c541: Update Effect dependencies to 4.0.0-beta.31 across workspace packages.
|
|
8
|
+
- de2359d: Update Effect dependencies to 4.0.0-beta.28 across workspace packages.
|
|
9
|
+
- 0d72f34: Update Effect dependencies to 4.0.0-beta.29 across workspace packages.
|
|
10
|
+
|
|
3
11
|
## 2.0.1-beta.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/gist.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Config, Effect, FileSystem, Layer, Path, Schema, ServiceMap } from "effect";
|
|
2
2
|
import { RunCommandService } from "./os-command.js";
|
|
3
|
-
declare const GistError_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").
|
|
3
|
+
declare const GistError_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
4
4
|
readonly _tag: "GistError";
|
|
5
5
|
} & Readonly<A>;
|
|
6
6
|
export declare class GistError extends GistError_base<{
|
|
@@ -103,7 +103,7 @@ export declare class GistCache {
|
|
|
103
103
|
company: string;
|
|
104
104
|
});
|
|
105
105
|
}
|
|
106
|
-
declare const GistCacheOfCompanyNotFound_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").
|
|
106
|
+
declare const GistCacheOfCompanyNotFound_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
107
107
|
readonly _tag: "GistCacheOfCompanyNotFound";
|
|
108
108
|
} & Readonly<A>;
|
|
109
109
|
declare class GistCacheOfCompanyNotFound extends GistCacheOfCompanyNotFound_base<{
|
|
@@ -111,7 +111,7 @@ declare class GistCacheOfCompanyNotFound extends GistCacheOfCompanyNotFound_base
|
|
|
111
111
|
readonly cache_gist_id: string;
|
|
112
112
|
}> {
|
|
113
113
|
}
|
|
114
|
-
declare const GistYAMLError_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").
|
|
114
|
+
declare const GistYAMLError_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
|
|
115
115
|
readonly _tag: "GistYAMLError";
|
|
116
116
|
} & Readonly<A>;
|
|
117
117
|
declare class GistYAMLError extends GistYAMLError_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.2",
|
|
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.31",
|
|
13
|
+
"effect": "^4.0.0-beta.31",
|
|
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
|
-
"effect-app": "
|
|
24
|
-
"
|
|
23
|
+
"@effect-app/eslint-shared-config": "0.5.7-beta.2",
|
|
24
|
+
"effect-app": "4.0.0-beta.13"
|
|
25
25
|
},
|
|
26
26
|
"typesVersions": {
|
|
27
27
|
"*": {
|