Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
Uglify and run jshint on JS files in js/compat directory
Browse files Browse the repository at this point in the history
  • Loading branch information
westonruter committed Jul 26, 2017
1 parent a900e76 commit dfeeba1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Gruntfile.js
Expand Up @@ -15,8 +15,8 @@ module.exports = function( grunt ) {
},
all: [
'Gruntfile.js',
'js/*.js',
'!js/*.min.js'
'js/**/*.js',
'!js/**/*.min.js'
]
},

Expand All @@ -30,7 +30,7 @@ module.exports = function( grunt ) {
expand: true,
cwd: 'js/',
src: [
'**.js',
'**/*.js',
'!**.min.js'
],
dest: 'js/',
Expand Down

0 comments on commit dfeeba1

Please sign in to comment.