UNPKG

3.23 kBMarkdownView Raw
1gulp-less
2=========
3
4A LESS plugin for Gulp
5
6[![Build Status](https://travis-ci.org/plus3network/gulp-less.png?branch=master)](https://travis-ci.org/plus3network/gulp-less)
7
8## Install
9
10```
11npm install gulp-less
12```
13
14## Usage
15```javascript
16var less = require('gulp-less');
17var path = require('path');
18
19gulp.task('less', function () {
20 gulp.src('./less/**/*.less')
21 .pipe(less({
22 paths: [ path.join(__dirname, 'less', 'includes') ]
23 }))
24 .pipe(gulp.dest('./public/css'));
25});
26```
27
28
29## Options
30
31The options are the same as what's supported by the less parser, with the exception of `sourceMapFilename` and `sourcemap`. These options will do nothing. Use [gulp-sourcemaps](https://github.com/floridoo/gulp-sourcemaps) to generate sourcemaps.
32
33## Source maps
34
35gulp-less can be used in tandem with [gulp-sourcemaps](https://github.com/floridoo/gulp-sourcemaps) to generate source maps for the less to CSS transition. You will need to initialize [gulp-sourcemaps](https://github.com/floridoo/gulp-sourcemaps) prior to running the gulp-less compiler and write the source maps after.
36
37```javascript
38var sourcemaps = require('gulp-sourcemaps');
39
40gulp.src('./less/**/*.less')
41 .pipe(sourcemaps.init())
42 .pipe(less())
43 .pipe(sourcemaps.write())
44 .pipe(gulp.dest('./public/css'));
45
46// will write the source maps inline in the compiled CSS files
47```
48
49By default, [gulp-sourcemaps](https://github.com/floridoo/gulp-sourcemaps) writes the source maps inline in the compiled CSS files. To write them to a separate file, specify a relative file path in the `sourcemaps.write()` function.
50
51```javascript
52var sourcemaps = require('gulp-sourcemaps');
53
54gulp.src('./less/**/*.less')
55 .pipe(sourcemaps.init())
56 .pipe(less())
57 .pipe(sourcemaps.write('./maps'))
58 .pipe(gulp.dest('./public/css'));
59
60// will write the source maps to ./public/css/maps
61```
62
63## Error handling
64
65By default, a gulp task will fail and all streams will halt when an error happens. To change this behavior check out the error handling documentation [here](https://github.com/gulpjs/gulp/blob/master/docs/recipes/combining-streams-to-handle-errors.md)
66
67## License
68
69(MIT License)
70
71Copyright (c) 2014 Plus 3 Network dev@plus3network.com
72
73Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
74
75The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
76
77THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.