From: Evert Timberg Date: Tue, 13 Oct 2015 14:33:59 +0000 (-0400) Subject: Fix JSHint task X-Git-Tag: 2.0.0-beta~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6001a1e4e7d4a572e70cd55c049449ac85cbe134;p=thirdparty%2FChart.js.git Fix JSHint task --- 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')); }