Created
January 29, 2014 14:41
-
-
Save jdcauley/8689338 to your computer and use it in GitHub Desktop.
gulp-file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'), | |
sass = require('gulp-less'); | |
gulp.task('less', function() { | |
gulp.src('assets-v2/less/app.less') | |
.pipe(gulp.dest('assets-v2/css/')); | |
}); | |
gulp.task('default', function() { | |
gulp.run('less'); | |
gulp.watch(['assets-v2/less/*.less'], | |
function(event) { | |
gulp.run('less'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment