We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On line 100 in logger.js there is this:
function appendNewline(line) { this.emit('data', line + '\n'); }
This is a bug, since '\n' isn't converted to the newline character. This should be changed to:
function appendNewline(line) { this.emit('data', line + os.EOL); }
It causes this issue in Lerna which is streaming through strong-log-transformer: lerna/lerna#994
Additionally, on line 77 or logger.js there is this regexp to split lines:
var list = last.split(/\r\n|[\n\v\f\r\x85\u2028\u2029]/g);
This regex is suspect and probably should just split on whatever os.EOL is set to and nothing else.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On line 100 in logger.js there is this:
This is a bug, since '\n' isn't converted to the newline character. This should be changed to:
It causes this issue in Lerna which is streaming through strong-log-transformer:
lerna/lerna#994
Additionally, on line 77 or logger.js there is this regexp to split lines:
This regex is suspect and probably should just split on whatever os.EOL is set to and nothing else.
The text was updated successfully, but these errors were encountered: