@effect-app/cli 2.1.0-beta.29 → 2.1.0-beta.30
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 +6 -0
- package/dist/argv-patch.d.ts +1 -1
- package/dist/extract.d.ts +2 -2
- package/dist/gist.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/os-command.d.ts +1 -1
- package/dist/shared.d.ts +1 -1
- package/dist/sync-effect-subtree.d.ts +1 -1
- package/dist/sync-shared.d.ts +1 -1
- package/package.json +4 -4
- package/tsconfig.json +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @effect-app/cli
|
|
2
2
|
|
|
3
|
+
## 2.1.0-beta.30
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 78d076a: Update effect packages to `4.0.0-beta.84` (`effect`, `@effect/platform-node`, `@effect/platform-browser`, `@effect/atom-vue`, `@effect/sql-sqlite-node`, `@effect/vitest`).
|
|
8
|
+
|
|
3
9
|
## 2.1.0-beta.29
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/argv-patch.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const patchArgvForWrapCommands: (argv: Array<string>) => void;
|
|
2
|
-
//# sourceMappingURL=
|
|
2
|
+
//# sourceMappingURL=argv-patch.d.ts.map
|
package/dist/extract.d.ts
CHANGED
|
@@ -8,10 +8,10 @@ import type * as PlatformError from "effect/PlatformError";
|
|
|
8
8
|
* JSON export entries that map source files to their compiled .js and .d.ts outputs
|
|
9
9
|
*
|
|
10
10
|
* Example output:
|
|
11
|
-
* "./utils/helper": { "types": "./dist/utils/helper.d.
|
|
11
|
+
* "./utils/helper": { "types": "./dist/utils/helper.d.js", "default": "./dist/utils/helper.js" },
|
|
12
12
|
*
|
|
13
13
|
* This allows users to import individual modules instead of the entire package:
|
|
14
14
|
* import { helper } from 'package/utils/helper' instead of 'package'
|
|
15
15
|
*/
|
|
16
16
|
export declare const ExtractExportMappingsService: Effect.Effect<(cwd: string) => Effect.Effect<string, PlatformError.PlatformError, never>, never, FileSystem.FileSystem | Path.Path>;
|
|
17
|
-
//# sourceMappingURL=
|
|
17
|
+
//# sourceMappingURL=extract.d.ts.map
|
package/dist/gist.d.ts
CHANGED
|
@@ -413,4 +413,4 @@ export declare class GistHandler extends GistHandler_base {
|
|
|
413
413
|
static Default: Layer.Layer<GistHandler, never, import("effect/unstable/process/ChildProcessSpawner").ChildProcessSpawner | FileSystem.FileSystem | Path.Path>;
|
|
414
414
|
}
|
|
415
415
|
export {};
|
|
416
|
-
//# sourceMappingURL=
|
|
416
|
+
//# sourceMappingURL=gist.d.ts.map
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export {};
|
|
2
|
-
//# sourceMappingURL=
|
|
2
|
+
//# sourceMappingURL=index.d.ts.map
|
package/dist/os-command.d.ts
CHANGED
|
@@ -20,4 +20,4 @@ export declare class RunCommandService extends RunCommandService_base {
|
|
|
20
20
|
static Default: Layer.Layer<RunCommandService, never, ChildProcessSpawner>;
|
|
21
21
|
}
|
|
22
22
|
export {};
|
|
23
|
-
//# sourceMappingURL=
|
|
23
|
+
//# sourceMappingURL=os-command.d.ts.map
|
package/dist/shared.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const packages: string[];
|
|
2
2
|
export declare const EFFECT_APP_LIBS: string;
|
|
3
|
-
//# sourceMappingURL=
|
|
3
|
+
//# sourceMappingURL=shared.d.ts.map
|
|
@@ -8,4 +8,4 @@ export interface SyncEffectConfig {
|
|
|
8
8
|
readonly remoteUrl: string;
|
|
9
9
|
}
|
|
10
10
|
export declare const syncEffectSubtree: (config: SyncEffectConfig) => Effect.Effect<undefined, Error | import("effect/PlatformError").PlatformError, FileSystem.FileSystem | RunCommandService>;
|
|
11
|
-
//# sourceMappingURL=
|
|
11
|
+
//# sourceMappingURL=sync-effect-subtree.d.ts.map
|
package/dist/sync-shared.d.ts
CHANGED
|
@@ -55,4 +55,4 @@ export declare const syncPush: (opts?: {
|
|
|
55
55
|
branch?: string | undefined;
|
|
56
56
|
pr?: boolean | undefined;
|
|
57
57
|
} | undefined) => Effect.Effect<void, Error | import("effect/PlatformError").PlatformError, FileSystem.FileSystem | Path.Path | RunCommandService>;
|
|
58
|
-
//# sourceMappingURL=
|
|
58
|
+
//# sourceMappingURL=sync-shared.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/cli",
|
|
3
|
-
"version": "2.1.0-beta.
|
|
3
|
+
"version": "2.1.0-beta.30",
|
|
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.84",
|
|
13
|
+
"effect": "4.0.0-beta.84",
|
|
14
14
|
"js-yaml": "4.2.0",
|
|
15
15
|
"node-watch": "^0.7.4"
|
|
16
16
|
},
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"json5": "^2.2.3",
|
|
21
21
|
"typescript": "npm:@typescript/native-preview@beta",
|
|
22
22
|
"vitest": "^4.1.7",
|
|
23
|
-
"effect-app": "4.0.0-beta.
|
|
23
|
+
"effect-app": "4.0.0-beta.271"
|
|
24
24
|
},
|
|
25
25
|
"typesVersions": {
|
|
26
26
|
"*": {
|
package/tsconfig.json
CHANGED