A Gulp plugin to execute functions within a Gulp task pipeline.
Go to file
2015-10-25 22:46:22 +01:00
ts now working 2015-10-25 22:45:49 +01:00
.gitignore added gitignore 2015-10-25 20:02:14 +01:00
.travis.yml add travis 2015-09-17 20:58:19 +00:00
index.js now working 2015-10-25 22:45:49 +01:00
LICENSE.md Update LICENSE.md 2015-09-03 20:20:41 +02:00
package.json 0.0.3 2015-10-25 22:45:57 +01:00
README.md now working 2015-10-25 22:45:49 +01:00

gulp-callfunction

accepts call to execute in gulp pipeline.

build status/Dependencies

Build Status Dependency Status

Usage

var gulp = require("gulp");
var gulpCallFunction = require("gulp-callfunction");

var myFunction = function () {
    console.log("Hello World!")
}

gulp.task('gulpTest',function() {
    gulp.src('./mydir/*.something')
        .pipe(gulpCallFunction(myFunction,'forEach'))
        .pipe(gulp.dest(./build/))
});

Note: The first argument of gulpCallFunction can also be an array of multiple functionnames.
Note: the second argument can be empty (defaults to 'forEach') or 'atEnd'