piral-cli
Version:
The standard CLI for creating and building a Piral instance or a Pilet.
23 lines (22 loc) • 707 B
TypeScript
import { LogLevels, NpmClientType } from '../types';
export interface RemovePiralInstancePiletOptions {
/**
* Sets the log level to use (1-5).
*/
logLevel?: LogLevels;
/**
* The name of the Piral instance to remove.
*/
app?: string;
/**
* Sets the source directory for adding the Piral instance.
*/
source?: string;
/**
* The npm client to be used when scaffolding.
* @example 'yarn'
*/
npmClient?: NpmClientType;
}
export declare const removePiralInstancePiletDefaults: RemovePiralInstancePiletOptions;
export declare function removePiralInstancePilet(baseDir?: string, options?: RemovePiralInstancePiletOptions): Promise<void>;