sfdx-git-delta
Version:
Generate the sfdx content in source format and destructive change from two git commits
8 lines (7 loc) • 542 B
TypeScript
import type { Config } from '../types/config.js';
import type { FileGitRef } from '../types/git.js';
export declare const copyFiles: (config: Config, src: string) => Promise<void>;
export declare const readPathFromGit: (forRef: FileGitRef, config: Config) => Promise<string>;
export declare const pathExists: (path: string, config: Config) => Promise<boolean>;
export declare const readDir: (path: string, config: Config) => Promise<string[]>;
export declare const writeFile: (path: string, content: string, config: Config) => Promise<void>;