Quiet flag for tailwindcss cli #13439
Closed
clintjedwards
started this conversation in
Ideas
Replies: 1 comment
-
Related: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey all!
I'm loving tailwind and have integrated it into most of my personal projects via a simple make command that runs:
npx tailwindcss -i <input> -o <output> --watch
while I code so I can have live rebuilds. My problem lies in that the above command will output to stderr the messages "Rebuilding..." and "Done in [x]ms". This is nice, but the make command runs the above command as part of how the application runs also. So my application logs will output in the same terminal session as the tailwindcss cli output.This gets to be a bit messy as the logs end up being broken up by tailwindcli's rebuilding messages, which honestly I typically don't care about unless there is an error(although I can see a good reason for being able to quiet errors as well).
My questions are:
--quiet
be a reasonable addition? I understand new features aren't considered very often from the outside, but this seems like a (reasonably) quick win that I would be willing to post a PR for.Redirecting the common output seems like the quickest win here, although technically it is a breaking change.
Thanks for your time!
Beta Was this translation helpful? Give feedback.
All reactions