소스 검색

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']);
 };
 };