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
This command:
bin/peggy.js src/parser.pegjs -T examples/fizzbuzz.peggy > /tmp/p.js
writes colorized output to /tmp/p.js, because we're only checking to see if stderr is a TTY, not stdout.
/tmp/p.js
Work-around:
bin/peggy.js src/parser.pegjs -T examples/fizzbuzz.peggy > /tmp/p.js 2>&1
The text was updated successfully, but these errors were encountered:
Fixes peggyjs#315. Check isTTY for all output before using colors.
b48a69f
9397d96
5f8e04c
93f8d1a
hildjj
Successfully merging a pull request may close this issue.
This command:
bin/peggy.js src/parser.pegjs -T examples/fizzbuzz.peggy > /tmp/p.js
writes colorized output to
/tmp/p.js
, because we're only checking to see if stderr is a TTY, not stdout.Work-around:
The text was updated successfully, but these errors were encountered: