You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When rtlcss is called with both --silent and --stdin to take the css from stdin and output to stdout, the --silent flag results in no output since console.log is redefined to be an empty function. Using process.stdout.write instead of console.log fixes this issue.
The text was updated successfully, but these errors were encountered:
When rtlcss is called with both
--silent
and--stdin
to take the css from stdin and output to stdout, the--silent
flag results in no output since console.log is redefined to be an empty function. Usingprocess.stdout.write
instead ofconsole.log
fixes this issue.The text was updated successfully, but these errors were encountered: