Skip to content

Commit

Permalink
Ensure grunt watch compresses CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejolley committed Feb 3, 2014
1 parent 4e9a21a commit b19f5be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ module.exports = function( grunt ){
src: [
'*.js',
'!*.min.js',
'!Gruntfile.js',
'!jquery.flot*' // !jquery.flot* prevents to join all jquery.flot files in jquery.min.js
],
dest: '<%= dirs.js %>/admin/',
Expand Down Expand Up @@ -88,7 +89,7 @@ module.exports = function( grunt ){
watch: {
less: {
files: ['<%= dirs.css %>/*.less'],
tasks: ['less'],
tasks: ['less', 'cssmin'],
},
js: {
files: [
Expand Down

0 comments on commit b19f5be

Please sign in to comment.