version 4.4.2
This commit is contained in:
parent
d944ff8ad2
commit
e514522b08
12 changed files with 29 additions and 11 deletions
|
@ -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']);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue