Reputation: 322
So I use PHPStorm, and for CSS I use SASS that complies to CSS. I have questions mainly about workflow.
Upvotes: 0
Views: 325
Reputation: 165148
1. You did the exclusions wrong: .sass
will exclude just THAT file and not any other, e.g. abc.sass
.
To exclude all .sass
files you have to use *.sass
(just as hint below that field says -- nothing more, nothing less).
2. No way (unfortunately) -- but sync will be working properly now (after you fix your #1).
Automatic upload should also do the job just fine (but you will have to tick Upload external changes
option as well).
Upvotes: 2