tentacle-rimraf

Tentacle plugin for removing files recursively

Usage no npm install needed!

<script type="module">
  import tentacleRimraf from 'https://cdn.skypack.dev/tentacle-rimraf';
</script>

README

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