UNPKG

@jayree/sfdx-plugin-manifest

Version:

A powerful Salesforce CLI plugin and Node.js library to effortlessly generate, clean up, and manage package.xml and destructiveChanges.xml manifests directly from your Salesforce orgs or from Git changes in your SF projects. Unlock faster, safer, and smar

14 lines (13 loc) 625 B
import { SfCommand } from '@salesforce/sf-plugins-core'; export default class CleanupManifest extends SfCommand<void> { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly requiresProject = true; static readonly flags: { manifest: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>; file: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>; }; run(): Promise<void>; private cleanupManifestFile; }