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.
11 lines (10 loc) • 507 B
TypeScript
import type { DynatraceLibraryDependency } from '../../interfaces';
/**
* Collects all Dynatrace library dependencies (name + resolved version)
* by reading the package.json of each dependency found in the input paths.
*/
export declare function getAllLibraryDependencies(depPaths: string[]): DynatraceLibraryDependency[];
/**
* Logs all the library dependencies (package.json path + name and version)
*/
export declare function logLibraryDependencies(libraryDeps: DynatraceLibraryDependency[]): void;