UNPKG

st-bundle

Version:

CLI for watching and bundling SpringType projects.

18 lines (17 loc) 589 B
import { IBundleWriteResponse } from '../bundle/Bundle'; import { Context } from '../core/Context'; import { Package } from '../core/Package'; import { ProductionContext } from './ProductionContext'; export interface IProductionMain { packages: Array<Package>; ctx: Context; } export interface IProductionFlow { productionContext: ProductionContext; packages: Array<Package>; ctx: Context; } export interface IProductionResponse { bundles: Array<IBundleWriteResponse>; } export declare function productionMain(props: IProductionMain): Promise<IProductionResponse>;