tentacle-bootstrap

Bootstrap plugin for tentacle

Usage no npm install needed!

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

README

Plugin for tentacle which loads up all plugins installed and getting stuff ready for running. All those plugins will be stored under the dollar-sign ($) by default.

Installation

npm install --save-dev tentacle-bootstrap

Usage

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

tentacle.task('anytask', function() {
    return tentacle.read('*.txt')
        .pipe(tentacle.$.rimraf());
});

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

 Credit

Credit largely goes to @sindresorhus for his load-grunt-plugins plugin. This plugin is almost identical, just tweaked slightly to work with Gulp and to expose the required plugins.