From 6afda1f04b4f67fbddd0c0ec3cc57e5911950788 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Wed, 16 Dec 2015 16:42:38 -0600 Subject: [PATCH] fix(watch): trigger livereload on bundle and e2e changes --- gulpfile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index c51fa932f9..fc086944b5 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -170,6 +170,7 @@ gulp.task('bundle.system', function(){ .pipe(remember('system')) .pipe(concat('ionic.system.js')) .pipe(gulp.dest('dist/bundles')) + .pipe(connect.reload()) }) gulp.task('transpile', ['transpile.no-typecheck']); @@ -280,6 +281,7 @@ gulp.task('e2e.build', function() { file.dirname = file.dirname.replace(sep + 'test' + sep, sep); })) .pipe(gulp.dest('dist/e2e/')) + .pipe(connect.reload()); function createIndexHTML() { return through2.obj(function(file, enc, next) {