emitty icon indicating copy to clipboard operation
emitty copied to clipboard

language-scss does not work with @use

Open coldfeudal opened this issue 1 year ago • 0 comments

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

coldfeudal avatar Sep 18 '23 11:09 coldfeudal