From dfeeba18647d86a38d46bbfaf1c60bb5fc8f54ad Mon Sep 17 00:00:00 2001 From: Weston Ruter Date: Tue, 25 Jul 2017 20:06:18 -0700 Subject: [PATCH] Uglify and run jshint on JS files in js/compat directory --- Gruntfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 06732439..e7038559 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -15,8 +15,8 @@ module.exports = function( grunt ) { }, all: [ 'Gruntfile.js', - 'js/*.js', - '!js/*.min.js' + 'js/**/*.js', + '!js/**/*.min.js' ] }, @@ -30,7 +30,7 @@ module.exports = function( grunt ) { expand: true, cwd: 'js/', src: [ - '**.js', + '**/*.js', '!**.min.js' ], dest: 'js/',