mise à jour browserslist (IE11 mini)
This commit is contained in:
parent
0d68702dea
commit
365d221431
2 changed files with 19 additions and 18 deletions
|
@ -3,6 +3,7 @@
|
|||
## Changelog v8.0.0 (xxx 2019)
|
||||
|
||||
- corrections typo
|
||||
- support passé de IE10 à IE11 (browserlist)
|
||||
|
||||
## Changelog v7.1.2 (30 janvier 2019)
|
||||
|
||||
|
|
10
gulpfile.js
10
gulpfile.js
|
@ -16,12 +16,12 @@ var gaps = require('postcss-gap-properties'); // gaps polyfill
|
|||
var browsersList = [
|
||||
'> 1%',
|
||||
'last 2 versions',
|
||||
'IE >= 10', 'Edge >= 16',
|
||||
'IE >= 11', 'Edge >= 16',
|
||||
'Chrome >= 60',
|
||||
'Firefox >= 50', 'Firefox ESR',
|
||||
'Safari >= 10',
|
||||
'ios_saf >= 10',
|
||||
'Android >= 5'
|
||||
'Android >= 6'
|
||||
];
|
||||
|
||||
var plugins = [
|
||||
|
@ -64,14 +64,14 @@ gulp.task('cssProd', function () {
|
|||
.pipe(gulp.dest('./css/'));
|
||||
});
|
||||
|
||||
gulp.task('grillade', function() {
|
||||
gulp.task('grillade', function () {
|
||||
return gulp.src('./sass/_library/grillade-grid.scss')
|
||||
.pipe(sass())
|
||||
.pipe(postcss(pluginsProd))
|
||||
.pipe(gulp.dest('./css/'));
|
||||
});
|
||||
|
||||
gulp.task('grillade-flex', function() {
|
||||
gulp.task('grillade-flex', function () {
|
||||
return gulp.src('./sass/_library/grillade-flex.scss')
|
||||
.pipe(sass())
|
||||
.pipe(postcss(pluginsProd))
|
||||
|
@ -79,7 +79,7 @@ gulp.task('grillade-flex', function() {
|
|||
});
|
||||
|
||||
// Watcher
|
||||
gulp.task('watch', function() {
|
||||
gulp.task('watch', function () {
|
||||
gulp.watch(['./sass/*.scss'], ['cssDev']);
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue