I'm using gulp 4.0
(npm install gulpjs/gulp-cli#4.0 -g)
When one task throws some kind of error the error is being propagated to the root task and I see huge stacktrace for each task, is there any way to get rid of this?
http://hastebin.com/potikeroqa.pl
Expected behavior:
show stack-trace only for the task where error originates from
If I do
throw new gutil.PluginError('test', 'something broke', {showStack: false})
it hides stacktrace completely
Thanks!
I'm using gulp 4.0
(npm install gulpjs/gulp-cli#4.0 -g)
When one task throws some kind of error the error is being propagated to the root task and I see huge stacktrace for each task, is there any way to get rid of this?
http://hastebin.com/potikeroqa.pl
Expected behavior:
show stack-trace only for the task where error originates from
If I do
throw new gutil.PluginError('test', 'something broke', {showStack: false})it hides stacktrace completely
Thanks!