1.0.1 • Published 6 years ago
rosid-handler-less v1.0.1
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-lessUsage
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.