Skip to content

Commit dccbc5f

Browse files
committed
Fix minify task
1 parent d78f2c6 commit dccbc5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module.exports = function(grunt) {
2929
},
3030

3131
// Minify definitions
32-
min: {
32+
uglify: {
3333
dist: {
3434
src: ['<banner:meta.banner>', '<config:concat.dist.dest>'],
3535
dest: 'dist/jquery.github.min.js'
@@ -42,7 +42,7 @@ module.exports = function(grunt) {
4242
grunt.loadNpmTasks('grunt-contrib-jshint');
4343
grunt.loadNpmTasks('grunt-contrib-uglify');
4444

45-
grunt.registerTask('default', ['jshint', 'min', 'concat']);
45+
grunt.registerTask('default', ['jshint', 'uglify', 'concat']);
4646
grunt.registerTask('travis', ['jshint']);
4747

4848
};

0 commit comments

Comments
 (0)