woaru
Version:
Universal Project Setup Autopilot - Analyze and automatically configure development tools for ANY programming language
48 lines • 1.13 kB
TypeScript
/**
* WOARU Init Command - Interactive Project Scaffolding
* Implements the main init command with full project generation capabilities
*/
import { InitOptions } from './types';
export declare class InitCommand {
private registry;
private selector;
private engine;
constructor();
/**
* Execute the init command
*/
execute(options?: InitOptions): Promise<void>;
/**
* Run interactive project creation flow
*/
private runInteractiveFlow;
/**
* Create config from command line options (non-interactive)
*/
private createConfigFromOptions;
/**
* Show dry run output
*/
private showDryRun;
/**
* Run post-generation steps
*/
private runPostGenerationSteps;
/**
* Get install command for package manager
*/
private getInstallCommand;
/**
* Run shell command
*/
private runCommand;
/**
* Show success message and next steps
*/
private showSuccessMessage;
/**
* Handle errors gracefully
*/
private handleError;
}
//# sourceMappingURL=InitCommand.d.ts.map