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
npm
Describe the bug Version 5.0.3 has Carriage Return on npm
To Reproduce Steps to reproduce the behavior:
npm install [email protected]
cat -v node_modules/tap-junit/bin/tap-junit
Expected behavior Do not contain CR
cat -v node_modules/tap-junit/bin/tap-junit #! /usr/bin/env node ^M /* Modules */^M const parsedArgs = require('minimist')(process.argv.slice(2), {^M alias: {^M c: 'classname',^M o: 'output',^M n: 'name',^M s: 'suite',^M v: 'version',^M i: 'input',^M p: 'pretty'^M }^M })^M const { version } = require('../package.json')^M const parser = require('../src/index.js')^M const { createReadStream } = require('fs')^M const path = require('path')^M ^M /* Output */^M if (parsedArgs.version) {^M console.log(version)^M } else if (parsedArgs.input) {^M createReadStream(path.join(process.cwd(), parsedArgs.input))^M .pipe(parser(parsedArgs))^M } else {^M process.stdin^M .pipe(parser(parsedArgs))^M }^M
The text was updated successfully, but these errors were encountered:
Thanks for the report, sorry for the delay this got buried in work notifications.
v5.0.4 should now install with LF line endings
Sorry, something went wrong.
dhershman1
No branches or pull requests
Describe the bug
Version 5.0.3 has Carriage Return on
npm
To Reproduce
Steps to reproduce the behavior:
npm install [email protected]
cat -v node_modules/tap-junit/bin/tap-junit
Expected behavior
Do not contain CR
The text was updated successfully, but these errors were encountered: