dart-sass
dart-sass copied to clipboard
The reference implementation of Sass, written in Dart.
If you put a Selector with more than one line in a ‘@media’ Query the space that is needed to mark the indentation is not put there. CSS Result (formatting...
I don't know if this is a bug or some intentional language design gotcha I'm not aware of. Anyway, I migrated our styles to use `math.div()`. That worked great, or...
At least internally, we spin up a worker and use it for incremental rebuilds. This means the code/snapshot is already loaded, already JITd, and kept warm for the development cycle....
this is with npm sass . relative import fails when it starts with 2 dots `@import ../some-style`. I also checked how fs.existsSync handles paths with `..` in it. on linux...
The JS-compiled version of Dart Sass hovers around 2.5x and 3x slower than when running on the Dart VM. Some slowdown is inevitable, but this seems extreme. We should put...
A number of users have requested the ability to opt in to stricter Sass compilation, in which code that would normally just causes a warning (especially a deprecation warning) instead...
This would be somewhat similar to #633, except instead of opting-in to early errors for specific active deprecations, it would opt-in to early warnings for all known future deprecations. -...
when using `@import ` to import customer CSS subset file such as `@import "a.wxss"`, the dart-sass compiler always throws the error `Error: Can't find stylesheet to import.`, even I manually...
I recently asked how the watch should work: https://github.com/sass/dart-sass/issues/1666. Based on this information, I'm unable to make the watch work as described there. Maybe I'm missing something, or maybe where...
First, thank you so much for all the work to get #1411 merged! I realized only too late that there was a small typo in my initial version that has...