@flxbl-io/sfp
Version:
sfp is a CLI tool to help you manage your Salesforce projects in an artifact centric model
10 lines (9 loc) • 501 B
TypeScript
export default class DependencyHelper {
static getParentsToBeFullFilled(packagesWithParents: AdjacentList, packages: string[]): any;
static getChildsOfAllPackages(projectDirectory: string, filterByPackages?: string[]): AdjacentList;
static getParentsOfAllPackages(projectDirectory: string, filterByPackages?: string[]): AdjacentList;
static getParentsOfAPackage(packageList: AdjacentList, sfdx_package: string): string[];
}
export type AdjacentList = {
[key: string]: string[];
};