gulp-ccr-clean

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

Usage no npm install needed!

<script type="module">
  import gulpCcrClean from 'https://cdn.skypack.dev/gulp-ccr-clean';
</script>

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