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
When command line arguments are provided, they no longer have any impact on the outcome.
file.less
/*! hello */ /*! world */ foo { bar: 1 }
and compiled using:
lessc file.less --clean-css="--s1 --advanced --compatibility=ie8" file.css
/*! hello */foo{bar:1}
/*! hello *//*! world */foo{bar:1}
package.json:
package.json
{ "dependencies": { "less": "^4.2.0", "less-plugin-clean-css": "^1.6.0" } }
clean-css: 5.3.3 less-plugin-clean-css: 1.6.0 less: 4.2.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When command line arguments are provided, they no longer have any impact on the outcome.
Given
file.less
:and compiled using:
lessc file.less --clean-css="--s1 --advanced --compatibility=ie8" file.css
Expected outcome:
Actual outcome:
Context
package.json
:The text was updated successfully, but these errors were encountered: