npm-link-up
Version:
Use this package to link your projects together for local development.
6 lines (5 loc) • 423 B
TypeScript
import { EVCb, NLUDotJSON, NluMap } from "./index";
import { NLURunOpts } from "./commands/run/cmd-line-opts";
export declare const rootPaths: Array<string>;
export type Task = (cb: EVCb<any>) => void;
export declare const makeFindProject: (mainProjectName: string, totalList: Map<string, true>, map: NluMap, ignore: Array<RegExp>, opts: NLURunOpts, status: any, conf: NLUDotJSON) => (item: string, cb: EVCb<any>) => void;