Package Exports
- gulp-ccr-clean
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-ccr-clean) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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);