Using the grunt-contrib-watch with grunt-concurrent I want to hide/ignore only the watch log when one or more files are changed.
Something like this:
>> File "karma/lcov-report/login/Login.js.html" changed.
>> File "karma/lcov-report/login/index.html" changed.
It's possible?
My concurrent grunt config:
concurrent: {
options: {
logConcurrentOutput: true
},
karma: {
tasks: ["karma:dev", "watch:karma"]
}
},