@pulzar/cli
Version:
Ultimate command-line interface for Pulzar framework - scaffolding, development server, building, testing, code generation, health diagnostics, security auditing, and deployment tools for modern Node.js applications
21 lines • 562 B
TypeScript
import { Command } from "commander";
export interface BuildDIOptions {
sourceDir?: string;
outputFile?: string;
tsconfig?: string;
watch?: boolean;
validate?: boolean;
}
/**
* Build DI container from source code
*/
export declare function buildDI(options?: BuildDIOptions): Promise<void>;
/**
* Commander.js command setup
*/
export declare function createBuildDICommand(): Command;
/**
* Dedicated watch command for better CLI experience
*/
export declare function createWatchDICommand(): Command;
//# sourceMappingURL=build-di.d.ts.map