no need for transpile on watch task

This commit is contained in:
Tim Lancina
2015-08-07 16:06:09 -05:00
parent 318fccb0d3
commit f3839f9769

View File

@@ -76,7 +76,7 @@ gulp.task('watch', function(done) {
'!ionic/util/test/*'
],
function() {
runSequence('transpile', 'bundle', 'e2e');
runSequence('bundle', 'e2e');
}
);