A Gulp plugin to execute functions within a Gulp task pipeline.
Go to file
2015-11-24 13:44:32 +01:00
test added test 2015-10-26 16:18:37 +01:00
ts fix:added callback to function() atEnd 2015-11-24 13:44:32 +01:00
.gitignore added gitignore 2015-10-25 20:02:14 +01:00
.travis.yml added automatic version release through travis for npm 2015-10-26 16:20:41 +01:00
index.js fix:added callback to function() atEnd 2015-11-24 13:44:32 +01:00
LICENSE.md Update LICENSE.md 2015-09-03 20:20:41 +02:00
package.json 0.0.7 2015-10-26 16:22:29 +01:00
README.md add dev dependency badge 2015-10-26 16:25:08 +01:00
test.js added test 2015-10-26 16:18:37 +01:00

gulp-callfunction

accepts call to execute in gulp pipeline.

build status/Dependencies

Build Status Dependency Status devDependency 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'