Moved doc task to the end of the default task chain

This commit is contained in:
Rashid Khan 2013-12-03 16:15:28 -07:00
parent a4e74ad34f
commit 0efdd461df

View File

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