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
- Host: GitHub
- URL: https://github.com/seebigs/bundl-pack-less
- Owner: seebigs
- Created: 2017-01-13T00:46:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-10-15T17:10:21.000Z (over 7 years ago)
- Last Synced: 2025-06-10T08:03:31.573Z (12 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
```