Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gulp-ccr-clean

gulp-cookery10MIT0.1.1

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

gulp, gulp 4.0, gulp-cookery, gulp-chef, gulp-ccr, configurable-gulp-recipe, configurable-gulp-recipes, clean, task, tasks, gulp task, gulp tasks, gulp recipe, gulp recipes, cookery, plugin, plugins, recipe, recipes, configurable, configuration, configurations

readme

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);