I am trying to replace the deprecated org.jasig.maven:sass-maven-plugin:1.1.1, which uses Ruby (not working with Java 11) with the io.github.cleydyr:dart-sass-maven-plugin:0.3.0, which uses Dart Sass, in order to compile sass and generate css files.
The plugin works correctly but I noticed the following differences in the CSS files:
sass-maven-plugin | dart-sass-maven-plugin |
---|---|
font-size: 12pt; | font-size: 16px; |
background: #f51313; | background: rgb(245, 19, 19); |
Are these differences due to the different implementations of SASS or something is going wrong during the compilation? The only related documentation I found is the following question. Is there any other documentation that I can see the differences?