Skip to content

Instantly share code, notes, and snippets.

@dshster
Created July 6, 2014 09:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dshster/6d74da5f2d2b90403b5a to your computer and use it in GitHub Desktop.
Save dshster/6d74da5f2d2b90403b5a to your computer and use it in GitHub Desktop.
Gulp less basic task
/* global require */
'use strict';
var gulp = require('gulp'),
less = require('gulp-less');
gulp.task('less', function() {
gulp.src('styles/less/bootstrap.less')
.pipe(less({
compress: true
}))
.pipe(gulp.dest('styles/compile-gulp/'));
});
gulp.task('default', ['less']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment