I'm using Web Essentials in Visual Studio to compile SASS files locally on save. However I do not want the generated CSS files to be committed to source control. I have a Grunt task to compile the SASS when the project is deployed.
My problem is, I can't find a way to stop Web Essentials from adding the CSS files to the project.
- I have tried excluding them from the project but they get re-added on save.
- I have tried adding the files to
gitignore
but it seems to override this and still commit it.
I've looked at this SO question and this GitHub issue
How to people work around this issue? I would like to keep compile on save but not commit to source control.