UNPKG

@jayree/sfdx-plugin-manifest

Version:

A Salesforce CLI plugin containing commands for creating manifest files from Salesforce orgs or git commits of sfdx projects.

14 lines (13 loc) 604 B
import { VirtualTreeContainer } from '@salesforce/source-deploy-retrieve'; export declare class VirtualTreeContainerExtra extends VirtualTreeContainer { /** * Designed for recreating virtual files from a git ref * To support use of MetadataResolver to also resolve metadata xmls file names can be provided * * @param ref git ref * @param dir git dir * @param includeBufferForFiles full paths to modified files * @returns VirtualTreeContainer */ static fromGitRef(ref: string, dir: string, includeBufferForFiles: string[]): Promise<VirtualTreeContainer>; }