UNPKG

lucy-cli

Version:
60 lines (59 loc) 1.59 kB
#!/usr/bin/env node --no-warnings export type ModulesSettings = { packageRoot: string; targetFolder: string; args: string[]; settings: LucySettings; }; export type LucySettings = { modules: { [libName: string]: { url: string; branch: string; path?: string; noCompile?: boolean; }; }; wixSettings: { compilerOptions: { composite: boolean; noEmit: boolean; lib: string[]; jsx: string; }; exclude: string[]; }; initialized: boolean; wixPackages: { [packageName: string]: string; }; devPackages: { [packageName: string]: string; }; scripts: { [commandName: string]: string; }; }; export type ModuleSettings = { packageRoot: string; targetFolder: string; args: string[]; wixConfigPath: string; lucyConfigPath: string; packageJsonPath: string; settings: LucySettings; lockVersion: boolean; force: boolean; veloConfigName: string; }; export type ProjectSettings = { modules?: Record<string, string>; lucySettings?: LucySettings; packageJSON?: Record<string, any>; }; export declare const orange: import("chalk").ChalkInstance; export declare const blue: import("chalk").ChalkInstance; export declare const green: import("chalk").ChalkInstance; export declare const red: import("chalk").ChalkInstance; export declare const yellow: import("chalk").ChalkInstance; export declare const magenta: import("chalk").ChalkInstance;