@salesforce/plugin-release-management
Version:
A plugin for preparing and publishing npm packages
21 lines (20 loc) • 634 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
import { Interfaces } from '@oclif/core';
export default class SmokeTest extends SfCommand<void> {
static readonly summary: string;
static readonly description: string;
static readonly examples: string[];
static readonly flags: {
verbose: Interfaces.BooleanFlag<boolean>;
};
private flags;
run(): Promise<void>;
private smokeTest;
private testJITInstall;
private testInstall;
private verifyInstall;
private initializeAllCommands;
private getAllCommands;
private nonVerboseCommandExecution;
private execute;
}