jstransformers / jstransformer-scss

SCSS support for JSTransformers.
http://npmjs.com/jstransformer-scss
MIT License
4 stars 11 forks source link

Move to dart sass #29

Open learosema opened 3 years ago

learosema commented 3 years ago

According to the package's README, node-sass is deprecated:

Warning: LibSass and Node Sass are deprecated. While they will continue to receive maintenance releases indefinitely, there are no plans to add additional features or compatibility with any new CSS or Sass features. Projects that still use it should move onto Dart Sass.

There is already a pull request that does exactly this.

Build in the pull request is failing there because xo complains about abbreviated variable namings str, err, which seems to be a new xo code-style rule as it is also broken in the main branch.

learosema commented 3 years ago

However, although feature additions are stopped, maintainance for LibSass/node-sass will continue. So, maybe it would be better to move the dart-sass transformer I made in that pull request to a separate jstransformer-dart-scss package. What do you think?

Best Lea