We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recently, compiling SASS files started introducing unnecessary / unwanted changes to previously generated files. These changes include the following:
.my-class-name { width: 100px; height: 100px; }
becomes
in every rule block of every re-compiled CSS file.
Furthermore:
@charset "UTF-8";
0
0.5em
.5em
""
''
"\f144"
""
This introduces extensive yet largely meaningless changes that cause conflicts, look confusing on PRs and, in the latter case, could introduce issues.
Compiled CSS files display unnecessary changes.
Compiled CSS files only display deliberately introduced changes.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Installed product versions
Description
Recently, compiling SASS files started introducing unnecessary / unwanted changes to previously generated files. These changes include the following:
becomes
in every rule block of every re-compiled CSS file.
Furthermore:
@charset "UTF-8";
is added at the top of the re-compiled CSS files,]0
s in decimal values are dropped, i.e.0.5em
becomes.5em
""
get replaced with''
"\f144"
are replaced with""
.This introduces extensive yet largely meaningless changes that cause conflicts, look confusing on PRs and, in the latter case, could introduce issues.
Steps to recreate
Current behavior
Compiled CSS files display unnecessary changes.
Expected behavior
Compiled CSS files only display deliberately introduced changes.
The text was updated successfully, but these errors were encountered: