Skip to content

Commit

Permalink
Merge 5d41d38 into 0d48454
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcompton committed Feb 20, 2015
2 parents 0d48454 + 5d41d38 commit 4b832ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/readme.md
@@ -1,4 +1,4 @@
# Recipies
# Recipes

* [Prevent pipe breaking on errors](#prevent-pipe-breaking-on-errors)
* [Starting tasks on events](#starting-tasks-on-events)
Expand All @@ -9,7 +9,7 @@

> Until gulp 4.0 is released this is actual information
When you pipe one Stream to another and do not attaching `on('error')` handler they will `unpipe` on every error. This is frustraiting, when you have watcher and something like `coffeescript` builder. It is pretty easy to put typo in file and breake pipeline forever. To avoid this, you can use [`gulp-plumber`](https://github.com/floatdrop/gulp-plumber):
When you pipe one Stream to another and do not attaching `on('error')` handler they will `unpipe` on every error. This is frustrating, when you have watcher and something like `coffeescript` builder. It is pretty easy to put typo in file and breake pipeline forever. To avoid this, you can use [`gulp-plumber`](https://github.com/floatdrop/gulp-plumber):

```js
var gulp = require('gulp');
Expand Down

0 comments on commit 4b832ca

Please sign in to comment.