Pretty self-explanatory, emitty works with @import while using .sass files, but does not parse and rebuild files having @use
This works:
index.sass:
@import "vars"
.text
color: $red
It rebuilds vars and index
This does not:
index.sass:
@use "vars"
.text
color: vars.$red
It rebuilds index only
Pretty self-explanatory, emitty works with @import while using .sass files, but does not parse and rebuild files having @use
This works:
index.sass:It rebuilds vars and index
This does not:
index.sass:It rebuilds index only