1

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"]
        }
    },

1 Answers1

0

If there is no relevant option in the grunt-watch options, you could try grunt-verbosity.

cartant
  • 57,105
  • 17
  • 163
  • 197