more cosmetics

This commit is contained in:
2016-03-30 15:26:53 +02:00
parent 9e8fc76623
commit e389f78256
5 changed files with 8 additions and 8 deletions

View File

@ -15,7 +15,6 @@ export let g = {
};
export let merge2 = require("merge2");
export let projectinfo = require("projectinfo");
export let sourceMapSupport = require("source-map-support").install();
export let path = require("path");
export let Q = require("q");
export let shelljs = require("shelljs");
@ -24,4 +23,5 @@ export let smartcli = require("smartcli");
export let smartcov = require("smartcov");
export let smartenv = require("smartenv");
export let smartfile = require("smartfile");
export let smartpath = require("smartpath");
export let smartpath = require("smartpath");
export let sourceMapSupport = require("source-map-support").install();

View File

@ -51,8 +51,8 @@ let coverage = function(configArg){
.then(function(percentageArg){
if (percentageArg >= configArg.coverageTreshold){
plugins.beautylog.ok(
"your coverage of " + percentageArg + "% " + "exceeds your treshold of " +
configArg.coverageTreshold + "%"
"your coverage of " + percentageArg.toString().blue + "% ".blue + "exceeds your treshold of " +
configArg.coverageTreshold.toString().blue + "%".blue
);
} else {
plugins.beautylog.warn(