ericclemmons / grunt-verbosity

Adjust verbosity for individual grunt tasks
MIT License
8 stars 4 forks source link

Doesn't seem to work anymore? #6

Closed bluetidepro closed 9 years ago

bluetidepro commented 9 years ago

I have:

grunt.initConfig({
    verbosity: {
        options: { mode: 'hidden' },
        tasks: [
            'dog',
            'cat',
            'mouse',
            // etc.
        ]
    },
});

And it still seems to print everything, even with hidden on?

ericclemmons commented 9 years ago

TBH, I haven't worked on this or used a Grunt project in ~2 years so I have no idea what the landscape is like now :)

I'll accept PRs, but can't expend any effort otherwise.

bluetidepro commented 9 years ago

@ericclemmons Actually, it was my bad. I didn't realize you had to call the verbosity task also. I was just doing the config portion.