@storm-software/unbuild
Version:
A package containing `unbuild` utilities for building Storm Software libraries and applications
21 lines (18 loc) • 706 B
text/typescript
import { StormWorkspaceConfig } from '@storm-software/config';
/**
* Clean the Unbuild output path
*
* @param name - The name of the executor
* @param directory - The directory to clean
* @param config - The StormWorkspaceConfig object
*/
declare function clean(name: string | undefined, directory: string, config?: StormWorkspaceConfig): Promise<void>;
/**
* Clean the Unbuild output path
*
* @param name - The name of the executor
* @param directory - The directory to clean
* @param config - The StormWorkspaceConfig object
*/
declare function cleanDirectories(name: string | undefined, directory: string, config?: StormWorkspaceConfig): Promise<void>;
export { clean, cleanDirectories };