Skip to content

Commit

Permalink
remove redundant browserSync logic from views task
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemmarsh committed Mar 5, 2016
1 parent bfeb92f commit 23918b3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions gulp/tasks/views.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import config from '../config';
import gulp from 'gulp';
import browserSync from 'browser-sync';
import merge from 'merge-stream';
import templateCache from 'gulp-angular-templatecache';

Expand All @@ -18,8 +17,7 @@ gulp.task('views', function() {
.pipe(templateCache({
standalone: true
}))
.pipe(gulp.dest(config.views.dest))
.pipe(browserSync.stream());
.pipe(gulp.dest(config.views.dest));

return merge(indexFile, views);

Expand Down

0 comments on commit 23918b3

Please sign in to comment.