1.0.1 • Published 5 years ago

rosid-handler-less v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

rosid-handler-less

Travis Build Status Coverage Status Dependencies

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 to false.

Returns

  • {Promise<String|Buffer>} The transformed file content.