From f3839f97693f9c4be5604049cb24118fb96578be Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Fri, 7 Aug 2015 16:06:09 -0500 Subject: [PATCH] no need for transpile on watch task --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 6ec02dba06..0e820cb6a1 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -76,7 +76,7 @@ gulp.task('watch', function(done) { '!ionic/util/test/*' ], function() { - runSequence('transpile', 'bundle', 'e2e'); + runSequence('bundle', 'e2e'); } );