Skip to content
This repository has been archived by the owner on May 11, 2018. It is now read-only.

Commit

Permalink
Make plugin output single-lined.
Browse files Browse the repository at this point in the history
  • Loading branch information
yavorsky committed Dec 23, 2016
1 parent 8077ec3 commit 1e0b3a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};

Expand Down

0 comments on commit 1e0b3a2

Please sign in to comment.