Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a quiet mode #52

Open
ghost opened this issue Jun 24, 2014 · 5 comments
Open

Add a quiet mode #52

ghost opened this issue Jun 24, 2014 · 5 comments

Comments

@ghost
Copy link

ghost commented Jun 24, 2014

The title is explicit, a simple config line to quite mode could be awesome.

Thx for this perfect plugin

@davegreenwp
Copy link

Have to second this: the plugin is incredibly useful but also incredibly verbose :)

@deepsweet
Copy link

+1 here

@deepsweet
Copy link

🙀

module.exports = function(grunt) {
    // https://github.com/tschaub/grunt-newer/issues/52
    // https://github.com/gruntjs/grunt/issues/895
    var origLogHeader = grunt.log.header;
    grunt.log.header = function(msg) {
        if (!/newer(-postrun)?:/.test(msg)) {
            origLogHeader.apply(this, arguments);
        }
    };

    // ...
};

@tschaub
Copy link
Owner

tschaub commented Oct 16, 2014

If I get what you're looking for, I think this would have to be an option to Grunt itself (or an override like @deepsweet's above).

@tschaub tschaub changed the title Suggestion : add a quite mode Add a quiet mode Jan 9, 2015
@davegreenwp
Copy link

@deepsweet just want to thank you for this workaround!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants