From 237052481866c29b4fb0742be1f131655e8c166e Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Fri, 9 Oct 2015 22:49:30 -0500 Subject: [PATCH] remove demos from build task --- gulpfile.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 4ef85428d3..28e37e8b86 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -59,7 +59,7 @@ gulp.task('build', function(done) { runSequence( 'bundle', 'e2e', - 'demos:all', + // 'demos:all', 'sass', 'fonts', done @@ -100,9 +100,9 @@ gulp.task('watch', function(done) { } ); - watch('demos/**/*', function() { - gulp.start('demos:all'); - }); + // watch('demos/**/*', function() { + // gulp.start('demos:all'); + // }); watch('ionic/components/*/test/**/*', function(file) { if (file.event === "unlink") { @@ -362,9 +362,9 @@ gulp.task('src.link', function(done) { }); - watch('demos/**/*', function() { - gulp.start('demos:all'); - }); + // watch('demos/**/*', function() { + // gulp.start('demos:all'); + // }); }) gulp.task('src', function(done){