瀏覽代碼

Moved doc task to the end of the default task chain

Rashid Khan 12 年之前
父節點
當前提交
0efdd461df
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tasks/default_task.js

+ 1 - 1
tasks/default_task.js

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