You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SASS partials are traditionally started with an underscore (_). When Ritwick originally created this project he had this heavily influence the code. So when a file starts with an underscore it is not compiled, but rather compiles all possible files - those without an underscore. And, on the reverse of that, when a file without underscore is saved it should just be that files that is compiled.
Another point about this extension is that it doesn't parse the SASS stylesheet but rather just passes it to the compiler - this means that the extension doesn't actually know which files are linked to which.
I hope this makes sense and explains why it isn't working as expected
also, any non-underscored file name will have to output a file , unless we start having settings that say which individual files should output and which shouldn't
I have a problem getting main file recompiled after making changes to referenced styles.
Steps to reproduce:
Create style.scss
@use 'style.included';
And style.included.scss
body { background-color: blue; }
Start 'Watch Sass' and make changes to style.included.scss ,
for example change it to
body { background-color: black; }
and save it.Result: only style.included.scss gets recompiled.
![Screenshot 2021-08-04 202617](https://user-images.githubusercontent.com/1590757/128208765-6107a781-cf46-4ac1-9075-5b0c21d93698.png)
The text was updated successfully, but these errors were encountered: