From 15455ca0a1f23b7a0f82b0208753935f7637fdd5 Mon Sep 17 00:00:00 2001 From: blavenie <benoit.lavenier@e-is.pro> Date: Mon, 13 Jun 2016 22:43:08 +0200 Subject: [PATCH] Fix "ionic serve" watches files --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 78d1a95e..6690fd53 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -38,7 +38,7 @@ var paths = { templates: ['./www/templates/**/*.html'], templatecache: ['./www/templates/**/*.html'], ng_translate: ['./www/i18n/locale-*.json'], - ng_annotate: ['./www/js/*.js'] + ng_annotate: ['./www/js/**/*.js'] }; gulp.task('default', ['sass', 'config', 'templatecache', 'ng_translate', 'ng_annotate']); -- GitLab