A Gulp plugin to execute functions within a Gulp task pipeline.
test | ||
ts | ||
.gitignore | ||
.npmignore | ||
.travis.yml | ||
index.d.ts | ||
index.js | ||
LICENSE.md | ||
package.json | ||
README.md |
gulp-function
accepts call to execute in gulp pipeline.
build status/Dependencies
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'