Make plugin output single-lined.

This commit is contained in:
Artem Yavorsky 2016-12-23 13:22:45 +02:00
parent c0b8f5b604
commit 63c0931340

View File

@ -221,7 +221,7 @@ const logPlugin = (plugin, targets, list) => {
a[b] = envList[b]; a[b] = envList[b];
return a; return a;
}, {}); }, {});
const logStr = `\n ${plugin}\n ${JSON.stringify(filteredList)}`; const logStr = ` ${plugin} ${JSON.stringify(filteredList)}`;
console.log(logStr); console.log(logStr);
}; };