lucy-cli 2.0.0-beta.6 → 2.0.0-beta.7

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.
@@ -3,5 +3,5 @@ import { FileSystem, Path } from "@effect/platform";
3
3
  import { Config } from "../config.js";
4
4
  import { AppError } from "../error.js";
5
5
  export declare const isDirectoryClean: (excludes?: string[]) => Effect.Effect<boolean, import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem>;
6
- export declare const checkForDirty: (excludes?: string[]) => Effect.Effect<void, import("@effect/platform/Error").PlatformError | AppError, Config | FileSystem.FileSystem>;
7
- export declare const checkForVelo: () => Effect.Effect<undefined, import("@effect/platform/Error").PlatformError | AppError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem | Path.Path>;
6
+ export declare const checkForDirty: (excludes?: string[]) => Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem>;
7
+ export declare const checkForVelo: () => Effect.Effect<undefined, AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path>;
@@ -6,5 +6,5 @@ export declare const mergeLucySettings2PackageJson: Effect.Effect<void, never, C
6
6
  export declare const setModule: Effect.Effect<void, never, Config>;
7
7
  export declare const mergeAdditions: Effect.Effect<void, never, Config>;
8
8
  export declare const setProjectName: Effect.Effect<void, never, Config>;
9
- export declare const setInitialized: Effect.Effect<void, import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, FileSystem.FileSystem>;
9
+ export declare const setInitialized: Effect.Effect<void, import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, FileSystem.FileSystem>;
10
10
  export declare const stringReplace: (filePath: string, keys: string[], values: string[]) => Effect.Effect<void, import("@effect/platform/Error").PlatformError, FileSystem.FileSystem>;
@@ -4,4 +4,4 @@ import { FileSystem } from "@effect/platform";
4
4
  import { AppError } from "../error.js";
5
5
  export declare const execCommand: Effect.Effect<void, import("@effect/platform/Error").PlatformError, Config | import("@effect/platform/CommandExecutor").CommandExecutor>;
6
6
  export declare const open: Effect.Effect<void, import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | import("@effect/platform/CommandExecutor").CommandExecutor>;
7
- export declare const openEditor: Effect.Effect<void, import("@effect/platform/Error").PlatformError | AppError | import("effect/ParseResult").ParseError, Config | import("@effect/platform/CommandExecutor").CommandExecutor>;
7
+ export declare const openEditor: Effect.Effect<void, AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | import("@effect/platform/CommandExecutor").CommandExecutor>;
@@ -4,5 +4,5 @@ import { Config } from '../config.js';
4
4
  import { AppError } from '../error.js';
5
5
  import { FileSystem, Path } from "@effect/platform";
6
6
  export declare const isSubmoduleRegistered: (git: SimpleGit, submoduleName: string) => Effect.Effect<boolean, AppError, never>;
7
- export declare const gitInit: (update?: boolean) => Effect.Effect<void, import("@effect/platform/Error").PlatformError | AppError, Config | FileSystem.FileSystem | Path.Path>;
8
- export declare const initSubmodules: (update?: boolean) => Effect.Effect<void, import("@effect/platform/Error").PlatformError | AppError, Config | FileSystem.FileSystem | Path.Path>;
7
+ export declare const gitInit: (update?: boolean) => Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path>;
8
+ export declare const initSubmodules: (update?: boolean) => Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path>;
@@ -1,6 +1,6 @@
1
1
  import { Effect } from "effect/index";
2
2
  import { FileSystem, Path } from "@effect/platform";
3
3
  import { Config } from "../config.js";
4
- export declare const readPackageJson: Effect.Effect<void, import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem | Path.Path>;
5
- export declare const readLucyJsonFromTemplate: Effect.Effect<void, import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem | Path.Path>;
6
- export declare const readVeloSyncSettings: Effect.Effect<void, import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem>;
4
+ export declare const readPackageJson: Effect.Effect<void, import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path>;
5
+ export declare const readLucyJsonFromTemplate: Effect.Effect<void, import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path>;
6
+ export declare const readVeloSyncSettings: Effect.Effect<void, import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem>;
package/dist/config.d.ts CHANGED
@@ -38,5 +38,5 @@ export declare const lucyJsonPath: string;
38
38
  export declare const veloSyncJsonPath: string;
39
39
  export declare const wixSDKSettingsJsonPath: string;
40
40
  export declare const syncFilesSource: string;
41
- export declare const ConfigLayer: (args: Awaited<ReturnType<typeof get_args>>) => Layer.Layer<Config, import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, never>;
41
+ export declare const ConfigLayer: (args: Awaited<ReturnType<typeof get_args>>) => Layer.Layer<Config, import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, never>;
42
42
  export {};
@@ -2,4 +2,4 @@ import { Effect } from "effect/index";
2
2
  import { Config } from "../config.js";
3
3
  import { FileSystem, Path } from "@effect/platform";
4
4
  import { AppError } from "../error.js";
5
- export declare const init_blocks: () => Effect.Effect<void, import("@effect/platform/Error").PlatformError | AppError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem | import("@effect/platform/CommandExecutor").CommandExecutor | Path.Path>;
5
+ export declare const init_blocks: () => Effect.Effect<void, AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path | import("@effect/platform/CommandExecutor").CommandExecutor>;
@@ -1,2 +1,2 @@
1
1
  import { Effect } from "effect/index";
2
- export declare const init_cargo: () => Effect.Effect<void, import("@effect/platform/Error").PlatformError | import("../error.js").AppError | import("effect/ParseResult").ParseError, import("../config.js").Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/CommandExecutor").CommandExecutor | import("@effect/platform/Path").Path>;
2
+ export declare const init_cargo: () => Effect.Effect<void, import("../error.js").AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, import("../config.js").Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path | import("@effect/platform/CommandExecutor").CommandExecutor>;
@@ -2,4 +2,4 @@ import { Effect } from "effect/index";
2
2
  import { Config } from "../config.js";
3
3
  import { FileSystem, Path } from "@effect/platform";
4
4
  import { AppError } from "../error.js";
5
- export declare const init_expo: () => Effect.Effect<void, import("@effect/platform/Error").PlatformError | AppError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem | import("@effect/platform/CommandExecutor").CommandExecutor | Path.Path>;
5
+ export declare const init_expo: () => Effect.Effect<void, AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path | import("@effect/platform/CommandExecutor").CommandExecutor>;
@@ -1,2 +1,2 @@
1
1
  import { Effect } from "effect/index";
2
- export declare const init_submodules: () => Effect.Effect<void, import("@effect/platform/Error").PlatformError | import("../error.js").AppError | import("effect/ParseResult").ParseError, import("../config.js").Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
2
+ export declare const init_submodules: () => Effect.Effect<void, import("../error.js").AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, import("../config.js").Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
@@ -1,3 +1,3 @@
1
1
  import { Effect } from "effect/index";
2
2
  import { Config } from "../config.js";
3
- export declare const init: Effect.Effect<void, any, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/CommandExecutor").CommandExecutor | import("@effect/platform/Path").Path>;
3
+ export declare const init: Effect.Effect<void, any, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path | import("@effect/platform/CommandExecutor").CommandExecutor>;
@@ -1,4 +1,4 @@
1
1
  import { Effect } from "effect/index";
2
2
  import { Config } from "../config.js";
3
3
  import { FileSystem, Path } from "@effect/platform";
4
- export declare const init_monorepo: () => Effect.Effect<void, import("@effect/platform/Error").PlatformError | import("../error.js").AppError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem | import("@effect/platform/CommandExecutor").CommandExecutor | Path.Path>;
4
+ export declare const init_monorepo: () => Effect.Effect<void, import("../error.js").AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path | import("@effect/platform/CommandExecutor").CommandExecutor>;
@@ -1,2 +1,2 @@
1
1
  import { Effect } from 'effect/index';
2
- export declare const prepareVelo: Effect.Effect<void, import("@effect/platform/Error").PlatformError | import("../error.js").AppError | import("effect/ParseResult").ParseError, import("../config.js").Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/CommandExecutor").CommandExecutor | import("@effect/platform/Path").Path>;
2
+ export declare const prepareVelo: Effect.Effect<void, import("../error.js").AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, import("../config.js").Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path | import("@effect/platform/CommandExecutor").CommandExecutor>;
@@ -2,4 +2,4 @@ import { Effect } from "effect/index";
2
2
  import { Config } from "../config.js";
3
3
  import { FileSystem, Path } from "@effect/platform";
4
4
  import { AppError } from "../error.js";
5
- export declare const init_tauri: () => Effect.Effect<void, import("@effect/platform/Error").PlatformError | AppError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem | import("@effect/platform/CommandExecutor").CommandExecutor | Path.Path>;
5
+ export declare const init_tauri: () => Effect.Effect<void, AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path | import("@effect/platform/CommandExecutor").CommandExecutor>;
@@ -2,4 +2,4 @@ import { Effect } from "effect/index";
2
2
  import { Config } from "../config.js";
3
3
  import { FileSystem } from "@effect/platform";
4
4
  import { AppError } from "../error.js";
5
- export declare const selectTemplate: () => Effect.Effect<undefined, import("@effect/platform/Error").PlatformError | AppError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem>;
5
+ export declare const selectTemplate: () => Effect.Effect<undefined, AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem>;
@@ -2,4 +2,4 @@ import { Effect } from "effect/index";
2
2
  import { Config } from "../config.js";
3
3
  import { FileSystem, Path } from "@effect/platform";
4
4
  import { AppError } from "../error.js";
5
- export declare const init_velo: () => Effect.Effect<void, import("@effect/platform/Error").PlatformError | AppError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem | import("@effect/platform/CommandExecutor").CommandExecutor | Path.Path>;
5
+ export declare const init_velo: () => Effect.Effect<void, AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path | import("@effect/platform/CommandExecutor").CommandExecutor>;
package/dist/runtime.d.ts CHANGED
@@ -2,4 +2,4 @@ import { ManagedRuntime } from "effect";
2
2
  import { get_args } from "./args.js";
3
3
  import { NodeInspectState, ServiceInspectState } from "./states.js";
4
4
  import { NodeContext } from "@effect/platform-node";
5
- export declare const build_runtime: (args: Awaited<ReturnType<typeof get_args>>) => ManagedRuntime.ManagedRuntime<import("./config.js").Config | NodeContext.NodeContext | ServiceInspectState | NodeInspectState, import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError>;
5
+ export declare const build_runtime: (args: Awaited<ReturnType<typeof get_args>>) => ManagedRuntime.ManagedRuntime<import("./config.js").Config | NodeContext.NodeContext | ServiceInspectState | NodeInspectState, import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError>;
@@ -1,4 +1,4 @@
1
1
  import { Effect } from "effect/index";
2
2
  import { Config } from "../config.js";
3
3
  import { AppError } from "../error.js";
4
- export declare const tasks: Effect.Effect<void, import("@effect/platform/Error").PlatformError | AppError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
4
+ export declare const tasks: Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
@@ -1,4 +1,4 @@
1
1
  import { Effect } from "effect/index";
2
2
  import { Config } from "../config.js";
3
3
  import { AppError } from "../error.js";
4
- export declare const wix_sdk: Effect.Effect<void, import("@effect/platform/Error").PlatformError | AppError | import("effect/ParseResult").ParseError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
4
+ export declare const wix_sdk: Effect.Effect<void, AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
@@ -1,4 +1,4 @@
1
1
  import { Effect } from "effect/index";
2
2
  import { Config } from "../config.js";
3
3
  import { AppError } from "../error.js";
4
- export declare const wix_sdk_init: Effect.Effect<void, import("@effect/platform/Error").PlatformError | AppError | import("effect/ParseResult").ParseError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
4
+ export declare const wix_sdk_init: Effect.Effect<void, AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
@@ -1,4 +1,4 @@
1
1
  import { Effect } from "effect/index";
2
2
  import { Config } from "../config.js";
3
3
  import { AppError } from "../error.js";
4
- export declare const wix_sdk_run: (program: Effect.Effect<never, AppError, never>) => Effect.Effect<void, import("@effect/platform/Error").PlatformError | AppError | import("effect/ParseResult").ParseError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
4
+ export declare const wix_sdk_run: (program: Effect.Effect<never, AppError, never>) => Effect.Effect<void, AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
@@ -1,4 +1,4 @@
1
1
  import { Effect } from "effect/index";
2
2
  import { Config } from "../config.js";
3
3
  import { AppError } from "../error.js";
4
- export declare const wix_sync: Effect.Effect<void, import("@effect/platform/Error").PlatformError | AppError | import("effect/ParseResult").ParseError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
4
+ export declare const wix_sync: Effect.Effect<void, AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
@@ -1,4 +1,4 @@
1
1
  import { Effect } from "effect/index";
2
2
  import { Config } from "../config.js";
3
3
  import { AppError } from "../error.js";
4
- export declare const init: Effect.Effect<void, import("@effect/platform/Error").PlatformError | AppError | import("effect/ParseResult").ParseError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
4
+ export declare const init: Effect.Effect<void, AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "lucy-cli",
4
- "version": "2.0.0-beta.6",
4
+ "version": "2.0.0-beta.7",
5
5
  "description": "Lucy Framework for WIX Studio Editor",
6
6
  "main": ".dist/index.js",
7
7
  "repository": {