Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/secbone/gulp-less-data
- Owner: Secbone
- Created: 2015-06-30T07:49:06.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-17T08:14:41.000Z (over 9 years ago)
- Last Synced: 2024-08-11T09:53:09.851Z (5 months ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/gulp-less-data
- Size: 129 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!