From 7b0d0b978a2e4f35269205ee0aca26813a87dc48 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Mon, 14 Sep 2015 12:06:37 -0500 Subject: [PATCH] Demos watch now. Fixes #109 --- gulpfile.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 2cbf117813..f482f70ece 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -98,6 +98,10 @@ gulp.task('watch', function(done) { } ); + watch('demos/**/*', function() { + gulp.start('demos'); + }); + watch('ionic/components/*/test/**/*', function(file) { if (file.event === "unlink") { var paths = file.history[0].split("ionic/components/");