A Gulp plugin to execute functions within a Gulp task pipeline.
Go to file
2016-02-01 03:35:23 +01:00
test cleanup 2016-02-01 03:33:33 +01:00
ts cleanup 2016-02-01 03:33:33 +01:00
.gitignore cleanup 2016-02-01 03:33:33 +01:00
.npmignore cleanup 2016-02-01 03:33:33 +01:00
.travis.yml added automatic version release through travis for npm 2015-10-26 16:20:41 +01:00
index.d.ts cleanup 2016-02-01 03:33:33 +01:00
index.js cleanup 2016-02-01 03:33:33 +01:00
LICENSE.md Update LICENSE.md 2015-09-03 20:20:41 +02:00
package.json 0.0.12 2016-02-01 03:35:23 +01:00
README.md cleanup 2016-02-01 03:33:33 +01:00

gulp-function

accepts call to execute in gulp pipeline.

build status/Dependencies

Build Status Dependency Status devDependency Status

Usage

var gulp = require("gulp");
var gulpFunction = require("gulp-function");

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

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

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