Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mipengine/mip-processor-less

MIP Processor For LESS Compile
https://github.com/mipengine/mip-processor-less

Last synced: 3 days ago
JSON representation

MIP Processor For LESS Compile

Awesome Lists containing this project

README

        

mip-processor-less
===========

MIP Processor For LESS Compile

Build Status

### usage

```js
var Builder = require('mip-builder');
var LessProcessor = require('mip-processor-less');

var builder = new Builder({
// bla bla

processor: [
// bla bla

new LessProcessor({
files: ['main.less']
})
]
});

builder.build();

```