Skip to content

Commit 3e94c98

Browse files
committed
Merge pull request #171 from jakemmarsh/fix-view-reloading
Fix view reloading
2 parents f88e6c4 + 9f66f54 commit 3e94c98

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

gulp/tasks/views.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import config from '../config';
44
import gulp from 'gulp';
5-
import browserSync from 'browser-sync';
65
import merge from 'merge-stream';
76
import templateCache from 'gulp-angular-templatecache';
87

@@ -18,8 +17,7 @@ gulp.task('views', function() {
1817
.pipe(templateCache({
1918
standalone: true
2019
}))
21-
.pipe(gulp.dest(config.views.dest))
22-
.pipe(browserSync.stream());
20+
.pipe(gulp.dest(config.views.dest));
2321

2422
return merge(indexFile, views);
2523

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angularjs-gulp-browserify-boilerplate",
3-
"version": "1.5.4",
3+
"version": "1.5.5",
44
"author": "Jake Marsh <[email protected]>",
55
"description": "Boilerplate using AngularJS, SASS, Gulp, and Browserify while also utilizing best practices.",
66
"repository": {
@@ -40,7 +40,7 @@
4040
"bulkify": "^1.1.1",
4141
"debowerify": "^1.3.1",
4242
"del": "^2.1.0",
43-
"eslint": "^2.2.0",
43+
"eslint": "2.2.0",
4444
"express": "^4.13.3",
4545
"gulp": "^3.9.0",
4646
"gulp-angular-templatecache": "^1.3.0",

0 commit comments

Comments
 (0)