Skip to content

Commit a62fb68

Browse files
author
jasonlemay
committed
Update Grunt
1 parent 6fb7594 commit a62fb68

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Gruntfile.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ module.exports = function(grunt) {
66
concat: {
77
dist: {
88
src: [
9-
//'js/libs/*.js',
109
'src/main/site/assets/js/global.js'
1110
],
1211
dest: 'src/main/site/assets/build/js/global.js'
@@ -87,7 +86,6 @@ module.exports = function(grunt) {
8786
grunt.loadNpmTasks('grunt-contrib-less');
8887
grunt.loadNpmTasks('grunt-contrib-watch');
8988

90-
grunt.registerTask('default', 'watch');
89+
grunt.registerTask('default', ['concat', 'uglify', 'imagemin', 'less', 'watch']);
9190
grunt.registerTask('imgs', 'imagemin');
92-
9391
};

0 commit comments

Comments
 (0)