1.0.0 • Published 9 years ago

tentacle-rimraf v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

Tentacle plugin for removing files even recursively from your filesystem

Installation

npm install --save-dev tentacle-rimraf

Usage

var tentacle = require('tentacle-js');
var rimraf = require('tentacle-rimraf');

tentacle.task('remove', function() {
    return tentacle.read(['bundle.css', '**/*.sass'])
        .pipe(rimraf());
});

tentacle.task('default', ['remove']);