lucy-cli 2.0.0-beta.15 → 2.0.0-beta.16
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 +3 -7
- package/dist/commands/cleanup.d.ts +1 -4
- package/dist/commands/copy.d.ts +2 -6
- package/dist/commands/edit.d.ts +7 -10
- package/dist/commands/exec.d.ts +3 -7
- package/dist/commands/git.d.ts +4 -8
- package/dist/commands/home.d.ts +1 -4
- package/dist/commands/install.d.ts +5 -9
- package/dist/commands/read.d.ts +3 -6
- package/dist/commands/write.d.ts +4 -7
- package/dist/commands.d.ts +1 -3
- package/dist/config.d.ts +7 -33
- package/dist/error.d.ts +1 -3
- package/dist/helpers.d.ts +1 -1
- package/dist/init/blocks.d.ts +1 -5
- package/dist/init/cargo.d.ts +1 -2
- package/dist/init/expo.d.ts +1 -5
- package/dist/init/gitModules.d.ts +1 -2
- package/dist/init/index.d.ts +1 -4
- package/dist/init/monorepo.d.ts +1 -4
- package/dist/init/prepareVelo.d.ts +1 -2
- package/dist/init/tauri.d.ts +1 -5
- package/dist/init/templates.d.ts +1 -5
- package/dist/init/velo.d.ts +1 -5
- package/dist/policy.d.ts +2 -3
- package/dist/runtime.d.ts +1 -4
- package/dist/schemas/index.d.ts +3 -10
- package/dist/schemas/lucy.d.ts +1 -27
- package/dist/states.d.ts +4 -5
- package/dist/tasks/Gulpfile.d.ts +1 -4
- package/dist/tasks/gulp/helpers.d.ts +1 -3
- package/dist/tasks/gulp/templates.d.ts +1 -1
- package/dist/tasks/index.d.ts +1 -4
- package/dist/tasks/syncSettings.d.ts +1 -3
- package/dist/utils/logger.d.ts +6 -6
- package/dist/wix-sdk/check.d.ts +1 -4
- package/dist/wix-sdk/client.d.ts +1 -10
- package/dist/wix-sdk/index.d.ts +1 -4
- package/dist/wix-sdk/init.d.ts +1 -4
- package/dist/wix-sdk/run.d.ts +1 -2
- package/dist/wix-sync/export.d.ts +1 -4
- package/dist/wix-sync/import.d.ts +1 -4
- package/dist/wix-sync/index.d.ts +1 -4
- package/dist/wix-sync/init.d.ts +1 -4
- package/dist/wix-sync/is-alive.d.ts +1 -4
- package/dist/wix-sync/migrate.d.ts +1 -4
- package/dist/wix-sync/sync.d.ts +1 -4
- package/package.json +2 -1
- package/settings/backend-settings.json +19 -0
- package/settings/master-settings.json +20 -0
- package/settings/page-settings.json +21 -0
- package/settings/public-settings.json +22 -0
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
import { AppError } from "../error.js";
|
|
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, 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>;
|
|
1
|
+
export declare const isDirectoryClean: (excludes?: string[]) => any;
|
|
2
|
+
export declare const checkForDirty: (excludes?: string[]) => any;
|
|
3
|
+
export declare const checkForVelo: () => any;
|
|
@@ -1,4 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
import { FileSystem, Path } from "@effect/platform";
|
|
4
|
-
export declare const cleanup: Effect.Effect<void, import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path>;
|
|
1
|
+
export declare const cleanup: any;
|
package/dist/commands/copy.d.ts
CHANGED
|
@@ -1,6 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { FileSystem } from "@effect/platform";
|
|
4
|
-
import { Config } from "../config.js";
|
|
5
|
-
export declare const copyTemplateFiles: Effect.Effect<void, import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path>;
|
|
6
|
-
export declare const copySyncFiles: Effect.Effect<void, import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path>;
|
|
1
|
+
export declare const copyTemplateFiles: any;
|
|
2
|
+
export declare const copySyncFiles: any;
|
package/dist/commands/edit.d.ts
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const setProjectName: Effect.Effect<void, never, Config>;
|
|
9
|
-
export declare const setInitialized: Effect.Effect<void, import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, FileSystem.FileSystem>;
|
|
10
|
-
export declare const stringReplace: (filePath: string, keys: string[], values: string[]) => Effect.Effect<void, import("@effect/platform/Error").PlatformError, FileSystem.FileSystem>;
|
|
1
|
+
export declare const editJson: (json: any, keys: string[], values: string[] | Object[]) => any;
|
|
2
|
+
export declare const mergeLucySettings2PackageJson: any;
|
|
3
|
+
export declare const setModule: any;
|
|
4
|
+
export declare const mergeAdditions: any;
|
|
5
|
+
export declare const setProjectName: any;
|
|
6
|
+
export declare const setInitialized: any;
|
|
7
|
+
export declare const stringReplace: (filePath: string, keys: string[], values: string[]) => any;
|
package/dist/commands/exec.d.ts
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
import { AppError } from "../error.js";
|
|
5
|
-
export declare const execCommand: Effect.Effect<void, import("@effect/platform/Error").PlatformError, Config | import("@effect/platform/CommandExecutor").CommandExecutor>;
|
|
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, AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | import("@effect/platform/CommandExecutor").CommandExecutor>;
|
|
1
|
+
export declare const execCommand: any;
|
|
2
|
+
export declare const open: any;
|
|
3
|
+
export declare const openEditor: any;
|
package/dist/commands/git.d.ts
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
import { Effect } from 'effect/index';
|
|
2
1
|
import { SimpleGit } from 'simple-git';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export declare const
|
|
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>;
|
|
9
|
-
export declare const gitSyncTemplates: (update?: boolean) => Effect.Effect<void, AppError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path>;
|
|
2
|
+
export declare const isSubmoduleRegistered: (git: SimpleGit, submoduleName: string) => any;
|
|
3
|
+
export declare const gitInit: (update?: boolean) => any;
|
|
4
|
+
export declare const initSubmodules: (update?: boolean) => any;
|
|
5
|
+
export declare const gitSyncTemplates: (update?: boolean) => any;
|
package/dist/commands/home.d.ts
CHANGED
|
@@ -1,4 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
import { FileSystem, Path } from "@effect/platform";
|
|
4
|
-
export declare const createLucyHome: () => Effect.Effect<void, import("../error.js").AppError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path>;
|
|
1
|
+
export declare const createLucyHome: () => any;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const runInstall: Effect.Effect<void, PlatformError, Config | CommandExecutor>;
|
|
7
|
-
export declare const yarnSetVersion: Effect.Effect<void, PlatformError, CommandExecutor>;
|
|
8
|
-
export declare const installVeloPackages: Effect.Effect<void, PlatformError, Config | CommandExecutor>;
|
|
9
|
-
export declare const approveBuilds: Effect.Effect<void, PlatformError, Config | CommandExecutor>;
|
|
1
|
+
export declare const installPackages: (workspace?: boolean) => any;
|
|
2
|
+
export declare const runInstall: any;
|
|
3
|
+
export declare const yarnSetVersion: any;
|
|
4
|
+
export declare const installVeloPackages: any;
|
|
5
|
+
export declare const approveBuilds: any;
|
package/dist/commands/read.d.ts
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
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>;
|
|
1
|
+
export declare const readPackageJson: any;
|
|
2
|
+
export declare const readLucyJsonFromTemplate: any;
|
|
3
|
+
export declare const readVeloSyncSettings: any;
|
package/dist/commands/write.d.ts
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const writePackageJson: Effect.Effect<void, import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path>;
|
|
6
|
-
export declare const writeVeloSyncSettings: Effect.Effect<void, import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path>;
|
|
7
|
-
export declare const writeWixSDKSettings: Effect.Effect<void, import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem | Path.Path>;
|
|
1
|
+
export declare const writeLucySettings: any;
|
|
2
|
+
export declare const writePackageJson: any;
|
|
3
|
+
export declare const writeVeloSyncSettings: any;
|
|
4
|
+
export declare const writeWixSDKSettings: any;
|
package/dist/commands.d.ts
CHANGED
package/dist/config.d.ts
CHANGED
|
@@ -1,31 +1,5 @@
|
|
|
1
|
-
import { Context, Layer } from "effect";
|
|
2
1
|
import { get_args } from "./args.js";
|
|
3
|
-
|
|
4
|
-
import { Actions } from "./schemas/types.js";
|
|
5
|
-
import { VeloSyncSettings, WixSDKSettings } from "./schemas/index.js";
|
|
6
|
-
declare const Config_base: Context.TagClass<Config, "Config", {
|
|
7
|
-
readonly config: {
|
|
8
|
-
readonly action: Actions;
|
|
9
|
-
readonly force: boolean;
|
|
10
|
-
readonly cwd: string;
|
|
11
|
-
readonly packageRoot: string;
|
|
12
|
-
readonly filesFolder: string;
|
|
13
|
-
readonly veloSyncArguments?: {
|
|
14
|
-
data?: string;
|
|
15
|
-
collection?: string;
|
|
16
|
-
schema?: string;
|
|
17
|
-
dry: boolean;
|
|
18
|
-
};
|
|
19
|
-
packageJson: any;
|
|
20
|
-
lucySettings: LucySettings;
|
|
21
|
-
readonly lucyHome: string;
|
|
22
|
-
templateDir: string;
|
|
23
|
-
templateFiles: string;
|
|
24
|
-
projectName: string;
|
|
25
|
-
veloSyncSettings?: VeloSyncSettings;
|
|
26
|
-
wixSDKSettings?: WixSDKSettings;
|
|
27
|
-
};
|
|
28
|
-
}>;
|
|
2
|
+
declare const Config_base: any;
|
|
29
3
|
export declare class Config extends Config_base {
|
|
30
4
|
}
|
|
31
5
|
export declare const packageJsonName = "package.json";
|
|
@@ -33,10 +7,10 @@ export declare const lucyJsonName = "lucy.json";
|
|
|
33
7
|
export declare const wixSyncJsonName = "wix-sync.json";
|
|
34
8
|
export declare const wixSDKSettingsJsonName = "wix-sdk-settings.json";
|
|
35
9
|
export declare const syncDataName = "sync-data";
|
|
36
|
-
export declare const packageJsonPath:
|
|
37
|
-
export declare const lucyJsonPath:
|
|
38
|
-
export declare const veloSyncJsonPath:
|
|
39
|
-
export declare const wixSDKSettingsJsonPath:
|
|
40
|
-
export declare const syncFilesSource:
|
|
41
|
-
export declare const ConfigLayer: (args: Awaited<ReturnType<typeof get_args>>) =>
|
|
10
|
+
export declare const packageJsonPath: any;
|
|
11
|
+
export declare const lucyJsonPath: any;
|
|
12
|
+
export declare const veloSyncJsonPath: any;
|
|
13
|
+
export declare const wixSDKSettingsJsonPath: any;
|
|
14
|
+
export declare const syncFilesSource: any;
|
|
15
|
+
export declare const ConfigLayer: (args: Awaited<ReturnType<typeof get_args>>) => any;
|
|
42
16
|
export {};
|
package/dist/error.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
declare const AppError_base:
|
|
2
|
-
readonly _tag: "AppError";
|
|
3
|
-
} & Readonly<A>;
|
|
1
|
+
declare const AppError_base: any;
|
|
4
2
|
export declare class AppError extends AppError_base<{
|
|
5
3
|
cause: unknown;
|
|
6
4
|
message: string;
|
package/dist/helpers.d.ts
CHANGED
|
@@ -7,4 +7,4 @@ export declare function killAllProcesses(processPattern: string): void;
|
|
|
7
7
|
/**
|
|
8
8
|
* Clean up and run a command before exiting the process.
|
|
9
9
|
*/
|
|
10
|
-
export declare function cleanupWatchers():
|
|
10
|
+
export declare function cleanupWatchers(): any;
|
package/dist/init/blocks.d.ts
CHANGED
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
import { FileSystem, Path } from "@effect/platform";
|
|
4
|
-
import { AppError } from "../error.js";
|
|
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
|
+
export declare const init_blocks: () => any;
|
package/dist/init/cargo.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
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>;
|
|
1
|
+
export declare const init_cargo: () => any;
|
package/dist/init/expo.d.ts
CHANGED
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
import { FileSystem, Path } from "@effect/platform";
|
|
4
|
-
import { AppError } from "../error.js";
|
|
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
|
+
export declare const init_expo: () => any;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
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
|
+
export declare const init_submodules: () => any;
|
package/dist/init/index.d.ts
CHANGED
|
@@ -1,4 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
import { AppError } from "../error.js";
|
|
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 | import("@effect/platform/CommandExecutor").CommandExecutor>;
|
|
1
|
+
export declare const init: any;
|
package/dist/init/monorepo.d.ts
CHANGED
|
@@ -1,4 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
import { FileSystem, Path } from "@effect/platform";
|
|
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
|
+
export declare const init_monorepo: () => any;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
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>;
|
|
1
|
+
export declare const prepareVelo: any;
|
package/dist/init/tauri.d.ts
CHANGED
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
import { FileSystem, Path } from "@effect/platform";
|
|
4
|
-
import { AppError } from "../error.js";
|
|
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>;
|
|
1
|
+
export declare const init_tauri: () => any;
|
package/dist/init/templates.d.ts
CHANGED
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
import { FileSystem } from "@effect/platform";
|
|
4
|
-
import { AppError } from "../error.js";
|
|
5
|
-
export declare const selectTemplate: () => Effect.Effect<undefined, AppError | import("effect/ParseResult").ParseError | import("@effect/platform/Error").PlatformError, Config | FileSystem.FileSystem>;
|
|
1
|
+
export declare const selectTemplate: () => any;
|
package/dist/init/velo.d.ts
CHANGED
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
import { FileSystem, Path } from "@effect/platform";
|
|
4
|
-
import { AppError } from "../error.js";
|
|
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>;
|
|
1
|
+
export declare const init_velo: () => any;
|
package/dist/policy.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare
|
|
3
|
-
export declare function autoscale_policy(seconds: number): Schedule.Schedule<number, unknown, never>;
|
|
1
|
+
export declare const default_docker_retry: any;
|
|
2
|
+
export declare function autoscale_policy(seconds: number): any;
|
package/dist/runtime.d.ts
CHANGED
|
@@ -1,5 +1,2 @@
|
|
|
1
|
-
import { ManagedRuntime } from "effect";
|
|
2
1
|
import { get_args } from "./args.js";
|
|
3
|
-
|
|
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/ParseResult").ParseError | import("@effect/platform/Error").PlatformError>;
|
|
2
|
+
export declare const build_runtime: (args: Awaited<ReturnType<typeof get_args>>) => any;
|
package/dist/schemas/index.d.ts
CHANGED
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const veloSyncSettings: Schema.Struct<{
|
|
4
|
-
siteUrl: typeof Schema.String;
|
|
5
|
-
secret: typeof Schema.String;
|
|
6
|
-
}>;
|
|
1
|
+
export declare const JsonSchema: any;
|
|
2
|
+
export declare const veloSyncSettings: any;
|
|
7
3
|
export type VeloSyncSettings = typeof veloSyncSettings.Type;
|
|
8
|
-
export declare const wixSDKSettings:
|
|
9
|
-
apiKey: typeof Schema.String;
|
|
10
|
-
siteId: typeof Schema.String;
|
|
11
|
-
}>;
|
|
4
|
+
export declare const wixSDKSettings: any;
|
|
12
5
|
export type WixSDKSettings = typeof wixSDKSettings.Type;
|
|
13
6
|
export declare const editors: readonly ["vscode", "cursor"];
|
package/dist/schemas/lucy.d.ts
CHANGED
|
@@ -1,29 +1,3 @@
|
|
|
1
|
-
import { Schema } from "effect/index";
|
|
2
1
|
export declare const pkgManagers: readonly ["pnpm", "yarn", "npm"];
|
|
3
|
-
export declare const lucySettings:
|
|
4
|
-
modules: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
5
|
-
source: typeof Schema.String;
|
|
6
|
-
branch: typeof Schema.String;
|
|
7
|
-
path: Schema.optional<typeof Schema.String>;
|
|
8
|
-
noCompile: Schema.optional<typeof Schema.Boolean>;
|
|
9
|
-
}>>;
|
|
10
|
-
veloSettings: Schema.optional<Schema.NullOr<Schema.Struct<{
|
|
11
|
-
compilerOptions: Schema.optional<Schema.Struct<{
|
|
12
|
-
composite: typeof Schema.Boolean;
|
|
13
|
-
noEmit: typeof Schema.Boolean;
|
|
14
|
-
lib: Schema.Array$<typeof Schema.String>;
|
|
15
|
-
jsx: typeof Schema.String;
|
|
16
|
-
}>>;
|
|
17
|
-
exclude: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
18
|
-
}>>>;
|
|
19
|
-
initialized: typeof Schema.Boolean;
|
|
20
|
-
type: Schema.Literal<["velo", "expo", "blocks", "monorepo", "tauri", "cargo", "submodules", "wix-sdk"]>;
|
|
21
|
-
dependencies: Schema.mutable<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
22
|
-
devDependencies: Schema.mutable<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
23
|
-
scripts: Schema.Record$<typeof Schema.String, typeof Schema.String>;
|
|
24
|
-
additionalCommands: Schema.optional<Schema.Array$<Schema.Array$<typeof Schema.String>>>;
|
|
25
|
-
additionalPkgProps: Schema.optional<typeof Schema.Object>;
|
|
26
|
-
packageManager: Schema.mutable<Schema.Literal<["pnpm", "yarn", "npm"]>>;
|
|
27
|
-
defaultModulePath: Schema.optional<typeof Schema.String>;
|
|
28
|
-
}>>;
|
|
2
|
+
export declare const lucySettings: any;
|
|
29
3
|
export type LucySettings = typeof lucySettings.Type;
|
package/dist/states.d.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
declare const ServiceInspectState_base: Context.TagClass<ServiceInspectState, "ServiceInspectState", Ref.Ref<String>>;
|
|
1
|
+
declare const ServiceInspectState_base: any;
|
|
3
2
|
export declare class ServiceInspectState extends ServiceInspectState_base {
|
|
4
3
|
}
|
|
5
|
-
export declare const service_inspect_init:
|
|
6
|
-
declare const NodeInspectState_base:
|
|
4
|
+
export declare const service_inspect_init: any;
|
|
5
|
+
declare const NodeInspectState_base: any;
|
|
7
6
|
export declare class NodeInspectState extends NodeInspectState_base {
|
|
8
7
|
}
|
|
9
|
-
export declare const node_inspect_init:
|
|
8
|
+
export declare const node_inspect_init: any;
|
|
10
9
|
export {};
|
package/dist/tasks/Gulpfile.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TaskOptions } from '../../schemas/gulp.js';
|
|
2
|
-
export declare function previewTemplates(options: TaskOptions):
|
|
2
|
+
export declare function previewTemplates(options: TaskOptions): any;
|
package/dist/tasks/index.d.ts
CHANGED
|
@@ -1,4 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
import { AppError } from "../error.js";
|
|
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
|
+
export declare const tasks: any;
|
|
@@ -1,3 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
export declare const task_syncSettings: Effect.Effect<void, import("@effect/platform/Error").PlatformError, Config | import("@effect/platform/FileSystem").FileSystem | import("@effect/platform/Path").Path>;
|
|
1
|
+
export declare const task_syncSettings: any;
|
package/dist/utils/logger.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export declare const orange:
|
|
2
|
-
export declare const blue:
|
|
3
|
-
export declare const green:
|
|
4
|
-
export declare const red:
|
|
5
|
-
export declare const yellow:
|
|
6
|
-
export declare const magenta:
|
|
1
|
+
export declare const orange: any;
|
|
2
|
+
export declare const blue: any;
|
|
3
|
+
export declare const green: any;
|
|
4
|
+
export declare const red: any;
|
|
5
|
+
export declare const yellow: any;
|
|
6
|
+
export declare const magenta: any;
|
|
7
7
|
export declare const logger: {
|
|
8
8
|
success: (message: string, ...optionalParams: any[]) => void;
|
|
9
9
|
info: (message: string, ...optionalParams: any[]) => void;
|
package/dist/wix-sdk/check.d.ts
CHANGED
package/dist/wix-sdk/client.d.ts
CHANGED
|
@@ -1,10 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { sites } from "@wix/sites";
|
|
3
|
-
import { Effect } from 'effect/index';
|
|
4
|
-
import { Config } from '../config.js';
|
|
5
|
-
import { AppError } from '../error.js';
|
|
6
|
-
export declare const createSDKClient: Effect.Effect<import("@wix/sdk").WixClient<undefined, import("@wix/sdk").IApiKeyStrategy, {
|
|
7
|
-
items: typeof items;
|
|
8
|
-
collections: typeof collections;
|
|
9
|
-
sites: typeof sites;
|
|
10
|
-
}>, AppError, Config>;
|
|
1
|
+
export declare const createSDKClient: any;
|
package/dist/wix-sdk/index.d.ts
CHANGED
|
@@ -1,4 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
import { AppError } from "../error.js";
|
|
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
|
+
export declare const wix_sdk: any;
|
package/dist/wix-sdk/init.d.ts
CHANGED
|
@@ -1,4 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
import { AppError } from "../error.js";
|
|
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
|
+
export declare const wix_sdk_init: any;
|
package/dist/wix-sdk/run.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
import { Effect } from "effect/index";
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
2
|
import { AppError } from "../error.js";
|
|
4
|
-
export declare const wix_sdk_run: (program: Effect.Effect<never, AppError, never>) =>
|
|
3
|
+
export declare const wix_sdk_run: (program: Effect.Effect<never, AppError, never>) => any;
|
package/dist/wix-sync/index.d.ts
CHANGED
|
@@ -1,4 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
import { AppError } from "../error.js";
|
|
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
|
+
export declare const wix_sync: any;
|
package/dist/wix-sync/init.d.ts
CHANGED
|
@@ -1,4 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Config } from "../config.js";
|
|
3
|
-
import { AppError } from "../error.js";
|
|
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>;
|
|
1
|
+
export declare const init: any;
|
package/dist/wix-sync/sync.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "lucy-cli",
|
|
4
|
-
"version": "2.0.0-beta.
|
|
4
|
+
"version": "2.0.0-beta.16",
|
|
5
5
|
"description": "Lucy Framework for WIX Studio Editor",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist",
|
|
9
|
+
"settings",
|
|
9
10
|
"lucy",
|
|
10
11
|
"patches"
|
|
11
12
|
],
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"composite": false,
|
|
4
|
+
"noEmit": true,
|
|
5
|
+
"experimentalDecorators": true,
|
|
6
|
+
"noUncheckedIndexedAccess": true,
|
|
7
|
+
"jsx": "react-jsx",
|
|
8
|
+
"strict": true,
|
|
9
|
+
"strictNullChecks": true,
|
|
10
|
+
"paths": {
|
|
11
|
+
"public/*": [],
|
|
12
|
+
"mocks": [],
|
|
13
|
+
"backend/*": [],
|
|
14
|
+
"wix-types/*": ["../wix-code-types/dist/types/*"],
|
|
15
|
+
"types/*": []
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"include": []
|
|
19
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"strict": true,
|
|
4
|
+
"composite": false,
|
|
5
|
+
"noEmit": true,
|
|
6
|
+
"strictNullChecks": true,
|
|
7
|
+
"jsx": "react-jsx",
|
|
8
|
+
"noUncheckedIndexedAccess": true,
|
|
9
|
+
"paths": {
|
|
10
|
+
"backend/*.web.js": [],
|
|
11
|
+
"backend/*.web": [],
|
|
12
|
+
"backend/*.jsw": [],
|
|
13
|
+
"backend/*": [],
|
|
14
|
+
"public/*": [],
|
|
15
|
+
"wix-types/*": ["../wix-code-types/dist/types/*"],
|
|
16
|
+
"types/*": []
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"include": []
|
|
20
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"strict": true,
|
|
4
|
+
"strictNullChecks": true,
|
|
5
|
+
"composite": false,
|
|
6
|
+
"noEmit": true,
|
|
7
|
+
"experimentalDecorators": true,
|
|
8
|
+
"jsx": "react-jsx",
|
|
9
|
+
"noUncheckedIndexedAccess": true,
|
|
10
|
+
"paths": {
|
|
11
|
+
"backend/*.web.js": [],
|
|
12
|
+
"backend/*.web": [],
|
|
13
|
+
"backend/*.jsw": [],
|
|
14
|
+
"backend/*": [],
|
|
15
|
+
"public/*": [],
|
|
16
|
+
"wix-types/*": ["../wix-code-types/dist/types/*"],
|
|
17
|
+
"types/*": []
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"include": []
|
|
21
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"experimentalDecorators": true,
|
|
4
|
+
"noUncheckedIndexedAccess": true,
|
|
5
|
+
"strict": true,
|
|
6
|
+
"composite": false,
|
|
7
|
+
"noEmit": true,
|
|
8
|
+
"jsx": "react-jsx",
|
|
9
|
+
"strictNullChecks": true,
|
|
10
|
+
"paths": {
|
|
11
|
+
"backend/*.web.js": [],
|
|
12
|
+
"backend/*.web": [],
|
|
13
|
+
"backend/*.jsw": [],
|
|
14
|
+
"backend/*": [],
|
|
15
|
+
"mocks": [],
|
|
16
|
+
"public/*": [],
|
|
17
|
+
"types/*": [],
|
|
18
|
+
"wix-types/*": ["../wix-code-types/dist/types/*"]
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"include": []
|
|
22
|
+
}
|