Post-process and compress CSS using clean-css.
JavaScript
Latest commit 19c7f4b Feb 19, 2017 @XhmikosR XhmikosR committed on GitHub Merge pull request #19 from XhmikosR/master
Minor tweaks and cleanup
Permalink
Failed to load latest commit information.
lib Lint tweaks. Feb 19, 2017
.gitignore initial Sep 12, 2014
LICENSE Update LICENSE Sep 17, 2015
README.md Clean up README.md. Feb 19, 2017
package.json Normalize package.json. Feb 19, 2017

README.md

NPM version Dependencies

less-plugin-clean-css

Compresses the css output from less using clean-css.

lessc usage

npm install -g less-plugin-clean-css

and then on the command line,

lessc file.less --clean-css="--s1 --advanced --compatibility=ie8"

See clean-css for the available command options - the only differences are advanced and rebase which we default to false, because it is not always entirely safe.

Programmatic usage

var LessPluginCleanCSS = require('less-plugin-clean-css'),
    cleanCSSPlugin = new LessPluginCleanCSS({advanced: true});
less.render(lessString, { plugins: [cleanCSSPlugin] })
  .then(

Browser usage

Browser usage is not supported at this time.