Skip to content

Emit errors to node stream

Latest
Compare
Choose a tag to compare
@TerribleDev TerribleDev released this 08 Feb 00:48
· 26 commits to master since this release
  • When we run into errors we should emit the errors into the node stream signaling that we should end the stream.

This fixes the case where you have the following code, with a failure in restore. In the past errors in restore would still call build. #27

return gulp.src("**/*.csproj")
                .pipe(restore())
                .pipe(build());