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
Look at /src/WebCompiler/Minify/FileMinifier.cs, line 82:
/src/WebCompiler/Minify/FileMinifier.cs
82
80 string result = minifier.MinifyStyleSheet(content, settings); 81 82 if (!string.IsNullOrEmpty(result))
If the CSS compiler result is empty, the CSS min file isn't written. The result of compiling the following SASS is an empty\null string...
.main > .main-body { // .style-me { } }
This could also an be issue with JS, but is prevented by "use strict", which is added by the compiler, always forcing the JS min file to be written.
"use strict"
Consider either cleaning the original file, if it exists, or always minifying.
The text was updated successfully, but these errors were encountered:
e7fba59
No branches or pull requests
Look at
/src/WebCompiler/Minify/FileMinifier.cs
, line82
:If the CSS compiler result is empty, the CSS min file isn't written.
The result of compiling the following SASS is an empty\null string...
This could also an be issue with JS, but is prevented by
"use strict"
, which is added by the compiler, always forcing the JS min file to be written.Consider either cleaning the original file, if it exists, or always minifying.
The text was updated successfully, but these errors were encountered: