@quasarbright/projection
Version:
A static site generator that creates a beautiful, interactive gallery to showcase your coding projects. Features search, filtering, tags, responsive design, and an admin UI.
18 lines • 475 B
TypeScript
/**
* Options for the build command
*/
export interface BuildOptions {
/** Path to custom config file */
config?: string;
/** Custom output directory */
output?: string;
/** Clean output directory before build */
clean?: boolean;
/** Show help */
help?: boolean;
}
/**
* Build command - generates the static site from project data
*/
export declare function build(options?: BuildOptions): Promise<void>;
//# sourceMappingURL=build.d.ts.map