UNPKG

@flxbl-io/sfp

Version:

sfp is a CLI tool to help you manage your Salesforce projects in an artifact centric model

21 lines (20 loc) 616 B
import UndirectedGraph from './UndirectedGraph'; /** * Class for the manipulation of package build collections */ export default class BuildCollections { private _graph; constructor(projectDirectory: string); get graph(): UndirectedGraph; /** * Constructs graph representation of collections * @param projectDirectory */ private createGraphOfBuildCollections; /** * Returns list of packages contained in the same collection as the package * @param pkg */ listPackagesInCollection(pkg: string): string[]; isPackageInACollection(pkg: string): boolean; }