Modularize grunt tasks

This commit is contained in:
Rashid Khan
2013-11-14 16:07:14 -07:00
parent 2e7a2d7410
commit ec964a13b9
18 changed files with 418 additions and 381 deletions

4
tasks/default_task.js Normal file
View File

@ -0,0 +1,4 @@
// Lint and build CSS
module.exports = function(grunt) {
grunt.registerTask('default', ['jshint:source', 'less:src']);
};