Skip to content

Commit

Permalink
adding dry task to Gruntfile
Browse files Browse the repository at this point in the history
  • Loading branch information
doowb committed Mar 15, 2013
1 parent 5d30877 commit 3c83ffb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Expand Up @@ -20,7 +20,7 @@ module.exports = function(grunt) {
dry: {
tests: {
files: {
'test/results/test.less', ['test/fixtures/bootstrap.css']
'test/results/test.less': ['test/fixtures/bootstrap.css']
}
}
}
Expand All @@ -31,6 +31,6 @@ module.exports = function(grunt) {

grunt.loadNpmTasks('grunt-contrib-jshint');

grunt.registerTask('default', ['jshint']);
grunt.registerTask('default', ['jshint', 'dry:tests']);

};

0 comments on commit 3c83ffb

Please sign in to comment.