rosid-handler-less

1.0.1 • Public • Published

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.

Package Sidebar

Install

npm i rosid-handler-less

Weekly Downloads

1

Version

1.0.1

License

MIT

Unpacked Size

7.02 kB

Total Files

7

Last publish

Collaborators

  • freedeebee