浏览代码

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).