Compare commits

...

3 Commits

Author SHA1 Message Date
Sven Slootweg 228f2c9b14 1.0.4 8 years ago
Sven Slootweg c7feaabcb4 Feed errors into the logger directly 8 years ago
Sven Slootweg a0446eb7fc Update gulp-named-log to latest 8 years ago

@ -1,6 +1,6 @@
{
"name": "@joepie91/gulp-partial-logger",
"version": "1.0.3",
"version": "1.0.4",
"description": "Gulp partial for logging output and errors of a pipeline",
"main": "index.js",
"scripts": {
@ -18,7 +18,7 @@
"author": "Sven Slootweg",
"license": "WTFPL",
"dependencies": {
"gulp-named-log": "0.0.3",
"gulp-named-log": "^0.0.4",
"gulp-plumber": "^1.1.0",
"stream-combiner2": "^1.1.1"
},

@ -19,7 +19,7 @@ module.exports = function(name, streams, options = {}) {
* combined stream, so we don't need `gulp-plumber` in our actual pipeline.
*/
let plumberStream = plumber(function(err) {
logger.error(err.toString());
logger.error(err);
/* Ensure that the task finishes, so as to not break `gulp.watch`. */
this.emit("end");
});

Loading…
Cancel
Save