2.0.0 • Published 7 years ago

start-clean v2.0.0

Weekly downloads
12
License
MIT
Repository
github
Last release
7 years ago

start-clean

npm linux build windows build coverage deps

Clean task for Start.

Install

npm install --save-dev start-clean
# or
yarn add --dev start-clean

Usage

import start from 'start';
import reporter from 'start-pretty-reporter';
import files from 'start-files';
import clean from 'start-clean';

export const cleanBuild = () => start(reporter())(
  files('build/'),
  clean()
);

This task relies on array of files and provides the same, see documentation for details.