From 7eb91d5d5d41d21425e5d9f1ff87a6eae6f17ced Mon Sep 17 00:00:00 2001 From: Julien FRADIN Date: Mon, 25 May 2015 13:36:15 +0200 Subject: [PATCH] Fixed undefined when printing bug report URL. --- bin/cssnext.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cssnext.js b/bin/cssnext.js index 0763498..4cf1d2a 100755 --- a/bin/cssnext.js +++ b/bin/cssnext.js @@ -177,7 +177,7 @@ function transform() { console.error() } console.error("If this error looks like a bug, please report it here:") - console.error(color.grey("❯ ") + pkg.bugs.url.cyan) + console.error(color.grey("❯ ") + color.cyan(pkg.bugs.url)) console.error() if (!config.watch) { exit(2)