-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
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
Skip file write if file content isn't changed #320
Comments
Don't see a good reason not to do this by default; PR welcome. |
@MartijnCuppens, I've opened #417 which solves this in a more general way. If I'm not mistaken, what you were asking for is:
What I built is:
I think what I have in #417 satisfies what you're looking for and solves a significant annoyance for me at the same time :) |
If the input is the same as the output CSS and the
--replace
flag is passed, the file is always overridden. Can we somehow prevent this from happening?The issue I have now is that I have another watcher on these files which detect file changes even if the content is not changed.
postcss-cli/index.js
Lines 222 to 227 in 42fc85e
We could wrap these lines with a simple check to prevent the file write from happening:
Not sure if we can better add a new option or do this check by default, what do you think?
The text was updated successfully, but these errors were encountered: