Old Grid System v6 (Flexbox) added for compatibility
This commit is contained in:
parent
f487ae4c77
commit
c5d37f172f
7 changed files with 311 additions and 4 deletions
12
gulpfile.js
12
gulpfile.js
|
@ -27,8 +27,7 @@ gulp.task('css', function () {
|
|||
});
|
||||
|
||||
gulp.task('grillade', function() {
|
||||
return gulp.src(['./sass/_config/_breakpoints.scss', './sass/components/grillade.scss'])
|
||||
.pipe(concat('grillade.scss'))
|
||||
return gulp.src('./sass/components/grillade.scss')
|
||||
.pipe(gulp.dest('./css/'))
|
||||
.pipe(sass())
|
||||
.pipe(autoprefixer({ grid: true }))
|
||||
|
@ -36,6 +35,15 @@ gulp.task('grillade', function() {
|
|||
.pipe(gulp.dest('./css/'));
|
||||
});
|
||||
|
||||
gulp.task('grillade-v6', function() {
|
||||
return gulp.src('./sass/components/grillade-v6.scss')
|
||||
.pipe(gulp.dest('./css/'))
|
||||
.pipe(sass())
|
||||
.pipe(autoprefixer())
|
||||
.pipe(minifycss())
|
||||
.pipe(gulp.dest('./css/'));
|
||||
});
|
||||
|
||||
// Watcher
|
||||
gulp.task('watch', function() {
|
||||
gulp.watch(['./sass/*.scss'], ['css']);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue