@gdjiami/cli
Version:
CLI for build front end project.
23 lines (22 loc) • 465 B
TypeScript
export interface PageOption {
context: string;
entry?: string[];
isProduction?: boolean;
electron?: boolean;
inject: {
[key: string]: string;
};
templateParameters: {
[key: string]: string;
};
hotreload: boolean;
}
/**
* scan entries in src
*/
export declare function getEntries(option: PageOption): {
entries: {
[name: string]: string[];
};
templatePlugins: any[];
};