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