I have a periodic problem when PhpStorm automatically compiles SASS into CSS files. Sometimes it misses some letters in final CSS file. For example after I write
body
color: #fff
I get the following CSS
body {
color: #ff;
}
Though the last character is missed. Sometimes it works as it should and compiles everything correctly. Looks like compiler saves changes to css file before SASS changes are completed or vice versa it doesn't catches all my changes in SASS file. What could be the problem and what is possible solution?