From 67ba044b5c7810aedfc381636f13605d186a3a54 Mon Sep 17 00:00:00 2001 From: A-312 Date: Thu, 5 Mar 2020 18:34:24 +0100 Subject: [PATCH] Watch all js files --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 5f9fcf1..60acdab 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -55,7 +55,7 @@ function styles() { // Watch for file changes function watch() { - gulp.watch('./src/js/easymde.js', scripts) + gulp.watch('./src/js/**/*.js', scripts) gulp.watch(css_files, styles) }