UNPKG

@builder.io/dev-tools

Version:

Builder.io Visual CMS Devtools

11 lines (10 loc) 292 B
export interface InstallResult { success: boolean; command: string; exitCode?: number; skipped: boolean; } /** * Run install command with live output and retry logic */ export declare function runInstallCommand(cwd: string, initialCommand?: string): Promise<InstallResult>;