sass / dart-sass

The reference implementation of Sass, written in Dart.
https://sass-lang.com/dart-sass
MIT License
3.87k stars 350 forks source link

--silence-deprecation doesn't work on the CLI #2244

Closed mwojslaw closed 3 months ago

mwojslaw commented 3 months ago

Hi, is it possible to leave invalid CSS after running sass compilation? Sass cli command is only part of our styling pipe, unfortunately one that have to be process at the beginning. We're making use of "deep selector" (vuejs term) which looks like this "& >>> li", and is processed by different software. When running sass cli this part of css is cut with message: "The selector "& > > > li" is invalid CSS. It will be omitted from the generated CSS. This will be an error in Dart Sass 2.0.0".

Can we somehow take this problem? I tried to use --silence-deprecation=bogus-combinators but without success.

nex3 commented 3 months ago

No. This will be a syntax error in Dart Sass 2.0.0, which means that there won't be a way for us to even represent it internally. In fact, one of the major reasons we're deprecating this behavior is because the current internal representation of invalid combinators adds major complications to Sass's selector logic.

I strongly recommend filing an issue against Vue to provide an alternative, CSS-compatible syntax for this. For example, Angular uses ::ng-deep for something similar.

I tried to use --silence-deprecation=bogus-combinators but without success.

This is a bug. I'll work on a fix.