lucy-cli 2.0.0-beta.6 → 2.0.0-beta.8
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/commands/checks.d.ts +2 -2
- package/dist/commands/exec.d.ts +1 -1
- package/dist/commands/git.d.ts +2 -2
- package/dist/init/blocks.d.ts +1 -1
- package/dist/init/cargo.d.ts +1 -1
- package/dist/init/expo.d.ts +1 -1
- package/dist/init/gitModules.d.ts +1 -1
- package/dist/init/index.d.ts +1 -1
- package/dist/init/monorepo.d.ts +1 -1
- package/dist/init/prepareVelo.d.ts +1 -1
- package/dist/init/tauri.d.ts +1 -1
- package/dist/init/templates.d.ts +1 -1
- package/dist/init/velo.d.ts +1 -1
- package/dist/tasks/index.d.ts +1 -1
- package/dist/wix-sdk/index.d.ts +1 -1
- package/dist/wix-sdk/init.d.ts +1 -1
- package/dist/wix-sdk/run.d.ts +1 -1
- package/dist/wix-sync/index.d.ts +1 -1
- package/dist/wix-sync/init.d.ts +1 -1
- package/files/templates/velo[D]/files/local.tsconfig.json +6 -5
- package/package.json +1 -1
|
@@ -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
|
|
7
|
-
export declare const checkForVelo: () => Effect.Effect<undefined, import("@effect/platform/Error").PlatformError |
|
|
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/platform/Error").PlatformError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem | Path.Path>;
|
package/dist/commands/exec.d.ts
CHANGED
|
@@ -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 |
|
|
7
|
+
export declare const openEditor: Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, Config | import("@effect/platform/CommandExecutor").CommandExecutor>;
|
package/dist/commands/git.d.ts
CHANGED
|
@@ -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
|
|
8
|
-
export declare const initSubmodules: (update?: boolean) => Effect.Effect<void, import("@effect/platform/Error").PlatformError
|
|
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>;
|
package/dist/init/blocks.d.ts
CHANGED
|
@@ -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 |
|
|
5
|
+
export declare const init_blocks: () => Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem | Path.Path | import("@effect/platform/CommandExecutor").CommandExecutor>;
|
package/dist/init/cargo.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Effect } from "effect/index";
|
|
2
|
-
export declare const init_cargo: () => Effect.Effect<void, import("
|
|
2
|
+
export declare const init_cargo: () => Effect.Effect<void, import("../error.js").AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, import("../config.js").Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path | import("@effect/platform/CommandExecutor").CommandExecutor>;
|
package/dist/init/expo.d.ts
CHANGED
|
@@ -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 |
|
|
5
|
+
export declare const init_expo: () => Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, 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("
|
|
2
|
+
export declare const init_submodules: () => Effect.Effect<void, import("../error.js").AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, import("../config.js").Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
|
package/dist/init/index.d.ts
CHANGED
|
@@ -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/
|
|
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>;
|
package/dist/init/monorepo.d.ts
CHANGED
|
@@ -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("
|
|
4
|
+
export declare const init_monorepo: () => Effect.Effect<void, import("../error.js").AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, 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("
|
|
2
|
+
export declare const prepareVelo: Effect.Effect<void, import("../error.js").AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, import("../config.js").Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path | import("@effect/platform/CommandExecutor").CommandExecutor>;
|
package/dist/init/tauri.d.ts
CHANGED
|
@@ -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 |
|
|
5
|
+
export declare const init_tauri: () => Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem | Path.Path | import("@effect/platform/CommandExecutor").CommandExecutor>;
|
package/dist/init/templates.d.ts
CHANGED
|
@@ -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 |
|
|
5
|
+
export declare const selectTemplate: () => Effect.Effect<undefined, AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem>;
|
package/dist/init/velo.d.ts
CHANGED
|
@@ -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 |
|
|
5
|
+
export declare const init_velo: () => Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, Config | FileSystem.FileSystem | Path.Path | import("@effect/platform/CommandExecutor").CommandExecutor>;
|
package/dist/tasks/index.d.ts
CHANGED
|
@@ -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
|
|
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>;
|
package/dist/wix-sdk/index.d.ts
CHANGED
|
@@ -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 |
|
|
4
|
+
export declare const wix_sdk: Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
|
package/dist/wix-sdk/init.d.ts
CHANGED
|
@@ -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 |
|
|
4
|
+
export declare const wix_sdk_init: Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
|
package/dist/wix-sdk/run.d.ts
CHANGED
|
@@ -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 |
|
|
4
|
+
export declare const wix_sdk_run: (program: Effect.Effect<never, AppError, never>) => Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
|
package/dist/wix-sync/index.d.ts
CHANGED
|
@@ -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 |
|
|
4
|
+
export declare const wix_sync: Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
|
package/dist/wix-sync/init.d.ts
CHANGED
|
@@ -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 |
|
|
4
|
+
export declare const init: Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError | import("effect/ParseResult").ParseError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
}
|
|
36
36
|
],
|
|
37
37
|
"paths": {
|
|
38
|
-
"public/*": ["./typescript/public/*"],
|
|
39
|
-
"backend/*": ["./typescript/backend/*"],
|
|
38
|
+
"public/*": ["./typescript/public/*", "./lib/public/*"],
|
|
39
|
+
"backend/*": ["./typescript/backend/*", "./lib/backend/*"],
|
|
40
40
|
"pages/*": ["./typescript/pages/*"],
|
|
41
|
-
"types/*": ["./typescript/types/*"]
|
|
41
|
+
"types/*": ["./typescript/types/*", "./lib/types/*"]
|
|
42
42
|
},
|
|
43
43
|
"typeRoots": [
|
|
44
44
|
"./types",
|
|
@@ -54,7 +54,8 @@
|
|
|
54
54
|
"../node_modules",
|
|
55
55
|
"node_modules",
|
|
56
56
|
"./**/*.test.ts",
|
|
57
|
-
"../src/**/*"
|
|
57
|
+
"../src/**/*",
|
|
58
|
+
"./cypress.config.mjs"
|
|
58
59
|
],
|
|
59
|
-
"include": ["!*.d.ts", "public/**/*.tsx", "**/*.ts"]
|
|
60
|
+
"include": ["!*.d.ts", "**/public/**/*.tsx", "**/*.ts"]
|
|
60
61
|
}
|