1.0.2 • Published 6 years ago

lessify v1.0.2

Weekly downloads
513
License
BSD-2-Clause
Repository
github
Last release
6 years ago

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