Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/secbone/gulp-less-data

Gulp LESS Data
https://github.com/secbone/gulp-less-data

Last synced: about 1 month ago
JSON representation

Gulp LESS Data

Awesome Lists containing this project

README

        

# Gulp LESS Data

## Install
```sh
npm install gulp-less-data
```
## Usage

```javascript
var gulp = require("gulp");
var less = require("gulp-less");
var lessData = require("gulp-less-data")

gulp.src("test.less")
.pipe(lessData({
color: "red",
bgcolor: "blue"
}))
.pipe(less())
.pipe(gulp.dest("./dest"));
```

## TODO

Eh, need more? Forget it!