From 32f6dc0346a914f62a505490b2c1ee06e101aea8 Mon Sep 17 00:00:00 2001 From: dceejay Date: Thu, 26 Mar 2015 19:43:30 +0000 Subject: [PATCH] tart up Gruntfile --- Gruntfile.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 99b45055..f0ef9327 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -14,9 +14,8 @@ * limitations under the License. **/ +// Project configuration for Node-RED-nodes module.exports = function(grunt) { - - // Project configuration. grunt.initConfig({ simplemocha: { options: { @@ -47,7 +46,7 @@ module.exports = function(grunt) { src: ['*/*.js','*/*/*.js'], filter: function(filepath) { // on some developer machines the test coverage HTML report utilities cause further failures if ((filepath.indexOf("coverage/") !== -1) || (filepath.indexOf("node_modules") !== -1)) { - console.log("Filtered out " + filepath + " from the jshint checks"); + console.log( "\033[30m filtered out \033[32m:\033[37m " + filepath + "\033[0m"); return false; } else { return true;