Use color red for error when the configuration file is not found.

This commit is contained in:
Rodrigo Ramírez Norambuena 2017-03-05 22:20:35 -03:00
parent 2168838365
commit 1e3b866c8b
2 changed files with 5 additions and 4 deletions

View file

@ -10,7 +10,8 @@ var colors = require("colors/safe");
var Utils = {
colors: {
warn: colors.yellow
warn: colors.yellow,
error: colors.red
}
};