@elora-cloud/elora-cli
Version:
elora build cli 前端打包脚手架
8 lines (5 loc) • 337 B
TypeScript
import * as rollup from 'rollup';
import { RollupBuild, OutputOptions } from 'rollup';
declare function writeBundles(bundle: RollupBuild, options: OutputOptions[]): Promise<rollup.RollupOutput[]>;
declare function formatBundleFilename(name: string, minify: boolean, ext: string): string;
export { formatBundleFilename, writeBundles };