Last active
August 29, 2015 14:07
-
-
Save deepsweet/38d87035c32decc93cac to your computer and use it in GitHub Desktop.
Revisions
-
Kir Belevich revised this gist
Oct 16, 2014 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,5 @@ 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) { -
Kir Belevich revised this gist
Oct 16, 2014 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,5 @@ module.exports = function(grunt) { // https://github.com/gruntjs/grunt/issues/895 var origLogHeader = grunt.log.header; grunt.log.header = function(msg) { if (!/newer(-postrun)?:/.test(msg)) { -
Kir Belevich created this gist
Oct 16, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ 'use strict'; module.exports = function(grunt) { var origLogHeader = grunt.log.header; grunt.log.header = function(msg) { if (!/newer(-postrun)?:/.test(msg)) { origLogHeader.apply(this, arguments); } }; // ... };