dt-app
Version:
The Dynatrace App Toolkit is a tool you can use from your command line to create, develop, and deploy apps on your Dynatrace environment.
15 lines (14 loc) • 630 B
TypeScript
export declare const DEPENDENCY_INSTALL_ERROR: (command: string, errorMessage?: string) => Error;
/**
* Runs an install of the preferred package manager in the provided current working directory
*/
export declare function installDependencies(options: {
/** Current working directory where the install should be performed */
cwd: string;
/** If the install should be done silently */
silent?: boolean;
/** Optional packages to specify what exactly should be installed */
packages?: string[];
/** If the install should display the last successful message */
silentEnd?: boolean;
}): Promise<void>;