less-plugin-clean-css
less-plugin-clean-css copied to clipboard
processImport always false
trafficstars
Why is the clean-css option processImport forced to be false. We also import some css files and would want them to be inlined as well. Is there any specific reasoning behind it?
its because the following less would inline
@import (inline) "file.css";
and the following would leave as-is
@import (css) "file.css";
with the 2nd one being the default, so I didn't want less specified directive being overridden by the minifier.
but we should probably only default it to false and allow it to be overridden and I would accept a PR to do that, can't imagine it is much work.