0.1.1 • Published 8 years ago

gulp-ccr-clean v0.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

gulp-ccr-clean

Clean up destination folder. A cascading configurable gulp recipe for gulp-chef.

Install

$ npm install --save-dev gulp-chef gulp-ccr-clean

Recipe

Clean

Ingredients

API

config.options.force

Allow deleting the current working directory and files/folders outside it. Defaults to false.

config.options.dryRun

See what would be deleted. Defaults to false.

Usage

var gulp = require('gulp');
var chef = require('gulp-chef');

var meals = chef({
    dest: 'dist/',
    clean: {
    }
});

gulp.registry(meals);