msync
Version:
Easily manage building and syncing multiple node-modules in a flexibly defined workspace.
12 lines (11 loc) • 384 B
TypeScript
export declare const name = "publish";
export declare const alias: string[];
export declare const description = "Publishes all modules that are ahead of NPM.";
export declare const args: {};
export declare function cmd(args?: {
params: string[];
options: {};
}): Promise<void>;
export interface IOptions {
}
export declare function publish(options?: IOptions): Promise<void>;