Compare commits

..

2 Commits

Author SHA1 Message Date
e10c31c740 2.0.2 2016-10-19 00:47:33 +02:00
af68a92702 improve README 2016-10-19 00:47:29 +02:00
2 changed files with 7 additions and 7 deletions

View File

@ -19,12 +19,12 @@ accepts call to execute in gulp pipeline.
### Usage ### Usage
```javascript ```javascript
var gulp = require("gulp"); let gulp = require("gulp");
var gulpFunction = require("gulp-function"); let gulpFunction = require("gulp-function");
var Q = require("q"); let Q = require("q");
var myFunction = function (file, enc) { // file and enc are optional in case you want to modify the file object let myFunction = function (file, enc) { // file and enc are optional in case you want to modify the file object
var done = Q.defer(); let done = Q.defer();
console.log("Hello World!") console.log("Hello World!")
// NOTE: // NOTE:
@ -36,7 +36,7 @@ var myFunction = function (file, enc) { // file and enc are optional in case you
} }
gulp.task('gulpTest',function() { gulp.task('gulpTest',function() {
var stream = gulp.src('./mydir/*.something') let stream = gulp.src('./mydir/*.something')
.pipe(gulpFunction(myFunction,'forEach')) //read the notes below .pipe(gulpFunction(myFunction,'forEach')) //read the notes below
.pipe(gulp.dest("./build/")); .pipe(gulp.dest("./build/"));
return stream; // by returning the stream gulp knows when our task has finished. return stream; // by returning the stream gulp knows when our task has finished.

View File

@ -1,6 +1,6 @@
{ {
"name": "gulp-function", "name": "gulp-function",
"version": "2.0.1", "version": "2.0.2",
"description": "accepts a function call as parameter to execute in gulp pipeline", "description": "accepts a function call as parameter to execute in gulp pipeline",
"main": "dist/index.js", "main": "dist/index.js",
"typings": "dist/index.d.ts", "typings": "dist/index.d.ts",