Skip to content

Commit 67654d7

Browse files
committed
Merge pull request #46 from postcss/fix-silent-errors-in-other-pipes
Fixed silent errors in other pipes
2 parents a503200 + a268c05 commit 67654d7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ module.exports = function (processors, options) {
6464
gutil.log('gulp-postcss:', file.relative + '\n' + warnings)
6565
}
6666

67-
cb(null, file)
67+
setImmediate(function () {
68+
cb(null, file)
69+
})
6870
}
6971

7072
function handleError (error) {

0 commit comments

Comments
 (0)