less-plugin-csswring
v0.0.1
Published
csswring plugin for less.js
Maintainers
Readme
less-plugin-csswring
Compresses the css output from Less using csswring.
lessc usage
npm install -g less-plugin-csswringand then on the command line,
lessc file.less --csswring="--sourcemap --preserve-hacks"See csswring for the available command options.
Programmatic usage
var LessPluginCSSwring = require('less-plugin-csswring'),
csswringPlugin = new LessPluginCSSwring({sourcemap: true});
less.render(lessString, { plugins: [csswringPlugin] })
.then(Browser usage
Browser usage is not supported at this time.
