UNPKG

msync

Version:

Easily manage building and syncing multiple node-modules in a flexibly defined workspace.

24 lines (23 loc) 730 B
import { IModule } from '../common'; export declare const name = "build"; export declare const description = "Builds and syncs all typescript modules in order."; export declare const args: { '-i': string; '-w': string; '-v': string; }; export declare function cmd(args?: { params: string[]; options: { i?: boolean; w?: boolean; v?: boolean; }; }): Promise<void>; export declare function build(options?: { includeIgnored?: boolean; watch?: boolean; verbose?: boolean; }): Promise<void>; export declare function buildOnce(modules: IModule[]): Promise<void>; export declare function buildWatch(modules: IModule[], includeIgnored: boolean, verbose: boolean): Promise<void>;