The uglify task takes too long to complete, it is difficult while development, How can I disable the task without removing from grunt.registerTask, because other tasks are also calling uglify
uglify: {
compile: {
options: {
banner: '<%= meta.text%>'
},
files: {
'<%= assets %>': '<%= concat.assets%>'
}
}
},
this is how I solved the issue