1.0.0 • Published 9 years ago

tentacle-bootstrap v1.0.0

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

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.