UNPKG

pridepack

Version:

CLI for building TypeScript packages

12 lines (10 loc) 337 B
import clean from '../core/clean'; import runTask from './run-task'; export default async function runCleanCommand(): Promise<void> { const task = await runTask(clean, { pending: 'Cleaning build directory...', success: 'Cleaned build directory!', failure: 'Failed to clean build directory.', }); await task.start(); }