update README
This commit is contained in:
parent
6e55ed3162
commit
17aa25fb61
14
README.md
14
README.md
@ -12,9 +12,18 @@ accepts call to execute in gulp pipeline.
|
|||||||
```javascript
|
```javascript
|
||||||
var gulp = require("gulp");
|
var gulp = require("gulp");
|
||||||
var gulpFunction = require("gulp-function");
|
var gulpFunction = require("gulp-function");
|
||||||
|
var Q = require("q");
|
||||||
|
|
||||||
var myFunction = function () {
|
var myFunction = function () {
|
||||||
|
var done = Q.defer();
|
||||||
console.log("Hello World!")
|
console.log("Hello World!")
|
||||||
|
|
||||||
|
// NOTE:
|
||||||
|
// you can use done.resolve as callback function
|
||||||
|
// of any async tasks within this function
|
||||||
|
done.resolve();
|
||||||
|
|
||||||
|
return done.promise;
|
||||||
}
|
}
|
||||||
|
|
||||||
gulp.task('gulpTest',function() {
|
gulp.task('gulpTest',function() {
|
||||||
@ -24,5 +33,6 @@ gulp.task('gulpTest',function() {
|
|||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
>Note: The first argument of gulpFunction can also be an array of multiple functionnames.
|
> 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'
|
Each function can return a promise. the pipe stop will finish when every promise is fullfilled.
|
||||||
|
> Note: the second argument can be empty (defaults to 'forEach') or 'atEnd'
|
Loading…
Reference in New Issue
Block a user