An open API service indexing awesome lists of open source software.

https://github.com/seebigs/bundl-pack-less

Package LESS files
https://github.com/seebigs/bundl-pack-less

Last synced: 12 months ago
JSON representation

Package LESS files

Awesome Lists containing this project

README

          

# bundl-pack-less

*Package files in [bundl-pack](https://github.com/seebigs/bundl-pack) that end in `.less`*

> Learn more at [lesscss.org](http://lesscss.org/)

## Install

```
$ npm install --save-dev bundl-pack-less
```

## Use

```js
var Bundl = require('bundl');
var pack = require('bundl-pack');
var write = require('bundl-write');

var lessProcessor = require('bundl-pack-less');

var options = {
relativeUrls: false
};

new Bundl('entry.js')
.then(pack({ less: lessProcessor(options) }))
.then(write())
.go();
```