/** * BuildOrchestrator - Utilities for managing TypeScript server build pipelines * * Provides: * - Dependency installation checking * - TypeScript compilation * - Custom build hooks */ /** * Check if npm dependencies need to be installed and run npm install */ export declare const checkAndInstallDependencies: (targetDir: string) => void; /** * Build the TypeScript project */ export declare const buildTypeScript: (targetDir: string, buildCommand?: string[]) => void; /** * Run a custom preparation script if it exists */ export declare const runCustomPrepareScript: (scriptPath: string, workingDir: string) => void; /** * Parse port from environment variable */ export declare const parsePortEnv: (value: string | undefined, label: string) => number | undefined; //# sourceMappingURL=BuildOrchestrator.d.ts.map