build-easy
Version:
library build tool.
13 lines (12 loc) • 469 B
TypeScript
import type { BuildConfig } from './types';
/**
* @param {{ cwd: string; watch?: boolean; userConfig?: BuildConfig }} options - Node api startup parameters.
* @param {string} options.cwd - Root directory.
* @param {boolean} options.watch - Whether to enable monitoring.
* @param {BuildConfig} options.userConfig - User configuration
*/
export declare function build(options: {
cwd: string;
watch?: boolean;
userConfig?: BuildConfig;
}): Promise<void>;