UNPKG

sfdx-git-delta

Version:

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

15 lines 350 B
'use strict'; export default class BaseProcessor { work; metadata; config; constructor(work, metadata) { this.work = work; this.metadata = metadata; this.config = work.config; } async process() { throw new Error('this class should be derived'); } } //# sourceMappingURL=baseProcessor.js.map