My grunt tasks are registered like this -
grunt.registerTask('regenerateSources', ['clean:local', 'bower', 'uglify']);
When I run grunt regenerateSources
, it executes the clean, bower and uglify tasks. But is there a command to only run the uglify
task in my case?