version 4.4.2

This commit is contained in:
Raphael Goetter 2015-12-24 09:04:43 +01:00
parent d944ff8ad2
commit e514522b08
12 changed files with 29 additions and 11 deletions

View file

@ -24,6 +24,15 @@ gulp.task('css', function () {
.pipe(gulp.dest('./css/'));
});
gulp.task('grillade', function() {
return gulp.src(['./less/_00-config.less', './less/_03-grids.less'])
.pipe(concat('grillade.less'))
.pipe(less())
.pipe(autoprefixer())
.pipe(minifycss())
.pipe(gulp.dest('./css/'));
});
// Watcher
gulp.task('watch', function() {
gulp.watch(['./less/*.less'], ['css']);