Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

lessify

dstokes186BSD-2-Clause1.0.2

Middleware and Browserify transform for less files

browserify, less, transform

readme

lessify

Middleware and Browserify transform for less files.

Build Status
NPM

usage

some.less

.nav { width: (1 + 1); }

entry.js

require('some.less');

then

> browserify -t lessify entry.js > app.js

we haz css in our bundle!

options

Less options can be specified either on the command line:

> browserify -t [ lessify --relativeUrls --rootpath http://www.example.com/ ] entry.js

Or using the API:

var browserify = require('browserify');
var lessify = require('lessify');

var b = browserify();
b.transform({relativeUrls: true, rootpath: 'http://www.example.com/'}, lessify);
...

install

With npm do:

npm install lessify

contributors

https://github.com/dstokes/lessify/graphs/contributors