Skip to content

dstokes/lessify

Repository files navigation

lessify

Middleware and Browserify transform for less files.

CI
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

About

Middleware and Browserify transform for less files

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 5