소스 검색

chore(grunt): fix build task

Estevão Soares dos Santos 10 년 전
부모
커밋
0a3a0df6bf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Gruntfile.js

+ 1 - 1
Gruntfile.js

@@ -161,7 +161,7 @@ module.exports = function (grunt) {
 
   grunt.registerTask('lint', ['jshint', 'jscs']);
   grunt.registerTask('test', ['clean', 'lint', 'concat:test', 'simplemocha:node', 'clean']);
-  grunt.registerTask('build', ['test', 'concatenate', 'uglify']);
+  grunt.registerTask('build', ['test', 'concat:dist', 'uglify']);
   grunt.registerTask('prep-release', ['build', 'changelog']);
 
   // Default task(s).