rosid-handler-less
v1.0.1
Published
Load LESS and transform to CSS, add vendor prefixes and minify
Downloads
13
Maintainers
Readme
rosid-handler-less
A function that loads a LESS file, transforms it to CSS, adds vendor prefixes and minifies the output.
Install
npm install rosid-handler-less
Usage
API
const handler = require('rosid-handler-less')
handler('main.less').then((data) => {})
handler('main.css', { optimize: true }).then((data) => {})
Rosid
Add the following object to your rosidfile.json
, rosidfile.js
or routes array. rosid-handler-less
will transform all matching LESS files in your source folder to CSS.
{
"name" : "LESS",
"path" : "[^_]*.{css,less}*",
"handler" : "rosid-handler-less"
}
/* main.less */
.class {
color: white;
}
/* main.css (output) */
.class { color: white; }
Parameters
filePath
{String}
Absolute path to file.opts
{?Object}
Options.optimize
{?Boolean}
- Optimize output. Defaults tofalse
.
Returns
{Promise<String|Buffer>}
The transformed file content.