UNPKG

dev-env-installer

Version:

[![Build Status](https://travis-ci.org/mulesoft-labs/dev-env-installer.svg?branch=master)](https://travis-ci.org/mulesoft-labs/dev-env-installer)

16 lines (15 loc) 701 B
export import utils = require("./exportedUtils"); export declare function pullAll(workspaceRootFolder: string, workspaceDescriptorFile: string): void; export declare function buildAll(workspaceRootFolder: string, workspaceDescriptorFile: string): void; export declare function testAll(workspaceRootFolder: string, workspaceDescriptorFile: string): void; export declare function installWorkspace(workspaceRootFolder: string, workspaceDescriptorFile: string): void; export interface DetectedModule { name: string; buildCommand: string; testCommand: string; fsLocation: string; dependencies: DetectedModule[]; gitUrl: string; gitBranch: string; installTypings: boolean; }