UNPKG

sfdx-git-delta

Version:

Generate the sfdx content in source format and destructive change from two git commits

12 lines (11 loc) 267 B
import type { Config } from './config.js'; export type Manifest = Map<string, Set<string>>; export type Manifests = { package: Manifest; destructiveChanges: Manifest; }; export type Work = { config: Config; diffs: Manifests; warnings: Error[]; };