Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
ec18663137 | |||
a476cf8c99 | |||
5af3185742 | |||
81849dc5eb | |||
51b9088d3e | |||
375b43a11c | |||
5b0a1edaa4 | |||
855e9b48c8 | |||
99db113285 | |||
844812311e |
@ -1,3 +1,5 @@
|
||||
ts/
|
||||
test/
|
||||
docs/
|
||||
coverage/
|
||||
node_modules/
|
||||
|
@ -46,6 +46,6 @@ Each function can return a promise. the pipe stop will finish when every promise
|
||||
* the following options are available:
|
||||
* "forFirst" - executes when first chunk/vinylfile of the stream reaches the pipestop.
|
||||
file is pushed further down the line when function's returned promise is fullfilled.
|
||||
* "atEnd" - executes like "forFirst" but with every chunk/vinylfile in the stream;
|
||||
* "atLast" - executes after all chunks have passed and are processed in full.
|
||||
That means the stream's "finish" event fires before "atLast" is executed!!!
|
||||
* "forEach" - executes like "forFirst" but with every chunk/vinylfile in the stream;
|
||||
* "atEnd" - executes after all chunks have passed and are processed in full.
|
||||
That means the stream's "finish" event fires **before "atLast" is executed**!!!
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gulp-function",
|
||||
"version": "1.2.1",
|
||||
"version": "1.3.0",
|
||||
"description": "accepts a function call as parameter to execute in gulp pipeline",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
@ -25,12 +25,11 @@
|
||||
},
|
||||
"homepage": "https://github.com/pushrocks/gulp-function",
|
||||
"dependencies": {
|
||||
"beautylog": "^3.1.2",
|
||||
"q": "^1.4.1",
|
||||
"through2": "^2.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"gulp": "^3.9.1",
|
||||
"npmts": "^4.0.2"
|
||||
"npmts": "^5.0.3"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user