Skip to content

Commit

Permalink
Merge pull request #171 from jakemmarsh/fix-view-reloading
Browse files Browse the repository at this point in the history
Fix view reloading
  • Loading branch information
jakemmarsh committed Mar 5, 2016
2 parents f88e6c4 + 9f66f54 commit 3e94c98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angularjs-gulp-browserify-boilerplate",
"version": "1.5.4",
"version": "1.5.5",
"author": "Jake Marsh <[email protected]>",
"description": "Boilerplate using AngularJS, SASS, Gulp, and Browserify while also utilizing best practices.",
"repository": {
Expand Down Expand Up @@ -40,7 +40,7 @@
"bulkify": "^1.1.1",
"debowerify": "^1.3.1",
"del": "^2.1.0",
"eslint": "^2.2.0",
"eslint": "2.2.0",
"express": "^4.13.3",
"gulp": "^3.9.0",
"gulp-angular-templatecache": "^1.3.0",
Expand Down

0 comments on commit 3e94c98

Please sign in to comment.