Skip to content

Commit

Permalink
Merge pull request #589 from shakyShane/master
Browse files Browse the repository at this point in the history
Docs: return stream & fix syntax highlighting
  • Loading branch information
yocontra committed Jul 16, 2014
2 parents 8fdf0ab + 761398e commit 8564ca2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/recipes/server-with-livereload-and-css-injection.md
Expand Up @@ -23,7 +23,7 @@ app/

... you can easily serve files from the `app` directory and have all browsers reload when any of them change with the following:

```
```js
var browserSync = require('browser-sync');
var reload = browserSync.reload;

Expand Down Expand Up @@ -51,7 +51,7 @@ var browserSync = require('browser-sync');
var reload = browserSync.reload;

gulp.task('sass', function () {
gulp.src('scss/styles.scss')
return gulp.src('scss/styles.scss')
.pipe(sass())
.pipe(gulp.dest('css'))
.pipe(reload({stream:true}));
Expand Down

0 comments on commit 8564ca2

Please sign in to comment.