-
Notifications
You must be signed in to change notification settings - Fork 52
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
Comments
Have to second this: the plugin is incredibly useful but also incredibly verbose :) |
+1 here |
🙀 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);
}
};
// ...
}; |
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). |
@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
The title is explicit, a simple config line to quite mode could be awesome.
Thx for this perfect plugin
The text was updated successfully, but these errors were encountered: