Skip to content

Commit

Permalink
Fix grunt css processing order
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsternberg committed Dec 22, 2014
1 parent b2ea6bd commit 9e5ba11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ module.exports = function(grunt) {
files: [{
expand: false,
cwd: 'css/',
src: ['**/*.css'],
src: ['css/cmb2.css'],
dest: 'css/',
}]
}
Expand Down Expand Up @@ -209,7 +209,7 @@ module.exports = function(grunt) {

});

grunt.registerTask('styles', ['sass', 'cmq', 'csscomb', 'cssmin']);
grunt.registerTask('styles', ['sass', 'csscomb', 'cmq', 'cssmin']);
grunt.registerTask('js', ['asciify', 'jshint', 'uglify']);
grunt.registerTask('tests', ['asciify', 'jshint', 'phpunit']);
grunt.registerTask('default', ['styles', 'js', 'tests']);
Expand Down

0 comments on commit 9e5ba11

Please sign in to comment.