I have a style.sass
file that @use
s several _*.sass
partials. That was all working fine. Now I added a _*.scss
file (it just contains a map, so I wanted it to be multiline), but editing that file does not trigger a rebuild of the style.sass
file. I tried adding a SCSS file watcher too, since I'm not sure how IntelliJ decides what to watch, but that didn't help.
It works fine using Dart-SASS's --watch
argument. How do I make IntelliJ do the same?
(Although it's a Play project, I'm using IntelliJ's file watchers because I wanted to be able to use @use
, so I needed Dart SASS.)