From c80e32a4781afa38580cf427b4301bd88f5ba14f Mon Sep 17 00:00:00 2001 From: Lukas Juhas Date: Wed, 3 Aug 2016 10:32:33 +0100 Subject: [PATCH] Add better autoprefixer support for older browsers, correct notifications typo --- gulpfile.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index b6befe6..44da5f4 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,5 +1,5 @@ -// Disable notifications -// +process.env.DISABLE_NOTIFIER = false; +// Notifications (comment out to disable notifications) +// process.env.DISABLE_NOTIFIER = true; var gulp = require('gulp'); var gulpImagemin = require('gulp-imagemin'); @@ -8,6 +8,9 @@ var elixir = require('laravel-elixir'); // Assets path elixir.config.assetsPath = 'assets'; +// Make autoprefixer support older browsers +config.css.autoprefix.options.browsers = ['last 15 versions']; + // Imagemin var Task = elixir.Task; elixir.extend('imagemin', function(src, dest) {