From 6001a1e4e7d4a572e70cd55c049449ac85cbe134 Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Tue, 13 Oct 2015 10:33:59 -0400 Subject: [PATCH] Fix JSHint task --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 44a662d1a..5f23288cb 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -117,7 +117,7 @@ function releaseTask() { function jshintTask() { - return gulp.src(srcDir + '*.js') + return gulp.src(srcDir + '**/*.js') .pipe(jshint()) .pipe(jshint.reporter('default')); } -- 2.47.3