We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9e53f9 commit 43ceff1Copy full SHA for 43ceff1
lib/utils/yarn.js
@@ -38,7 +38,7 @@ module.exports = function yarn(yarnArgs, options) {
38
cp.stdout.setEncoding('utf8');
39
40
cp.stdout.on('data', (data) => {
41
- observer.next(data);
+ observer.next(data.replace(/\n$/, ''));
42
});
43
44
cp.then(() => {
0 commit comments