less-plugin-clean-css
less-plugin-clean-css copied to clipboard
Post-process and compress CSS using clean-css.
For example: `text-shadow: 0 0 7px #ff0000bd;` is converted to: `text-shadow:0 0 7px #f00bd` which is invalid
Hi Core Less Team, My name is Austin Gardner. I work for eBay on the eBay UI team. We have a few open source component libraries (CSS + JS) that...
This (very) basic test is based on the README example. Also tested on node 0.12. This should be the oldest version supported by less 2.x which this plugin is based...
See the following script: ` const less = require('less'); const plugin = require('less-plugin-clean-css'); const P = new plugin({ advanced: true }); const input = '.class {border: 1px solid var(--foo, var(--bar));}';...
Hello, please consider tagging released versions on this repo. Currently it is hard to find what version of the source in this repo corresponds to what version on NPM when...
The version of the clean-css dependency has been updated to a safe version, but the version of less-plugin-clean-css on npm is outdated and doesn't have the fix. Could we release...
https://github.com/jakubpawlowicz/clean-css/blob/master/README.md#important-40-breaking-changes
Need to update `clean-css`: ``` ┌───────────────┬──────────────────────────────────────────────────────────────┐ │ Low │ Regular Expression Denial of Service │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │ Package │ clean-css │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │ Patched in │ >=4.1.11 │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │...
Currently there are no test cases, these will be necessary to support any upgrade of clean-css, as required in issue #18. Without the test cases it will be hard to...
## Problem Microsoft Edge doesn't attempt to load the `.map` file due to the location of the source map comment in the CSS output. This is somewhat a known phenomenon...