From 1e0b3a2f28a7796f08175c156203a260632ea09f Mon Sep 17 00:00:00 2001 From: Artem Yavorsky Date: Fri, 23 Dec 2016 13:22:45 +0200 Subject: [PATCH] Make plugin output single-lined. --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index dfd33635..797a7f7b 100644 --- a/src/index.js +++ b/src/index.js @@ -221,7 +221,7 @@ const logPlugin = (plugin, targets, list) => { a[b] = envList[b]; return a; }, {}); - const logStr = `\n ${plugin}\n ${JSON.stringify(filteredList)}`; + const logStr = ` ${plugin} ${JSON.stringify(filteredList)}`; console.log(logStr); };