From a50b72c36acc375d9c8000209cb6ad01c374ffbd Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Mon, 8 Sep 2014 18:05:36 +0200 Subject: [PATCH] bump gulp-autoprefixer --- gulpfile.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 03d466330..620f1e534 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -94,7 +94,7 @@ gulp.task('styles', function () { }) .on('error', console.error.bind(console)) ) - .pipe($.autoprefixer(AUTOPREFIXER_BROWSERS)) + .pipe($.autoprefixer({browsers: AUTOPREFIXER_BROWSERS})) .pipe(gulp.dest('.tmp/styles')) // Concatenate And Minify Styles .pipe($.if('*.css', $.csso())) diff --git a/package.json b/package.json index 16cb36f47..b46e37ab3 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "browser-sync": "^1.3.0", "del": "^0.1.2", "gulp": "^3.8.5", - "gulp-autoprefixer": "^0.0.8", + "gulp-autoprefixer": "^1.0.0", "gulp-cache": "^0.2.2", "gulp-changed": "^1.0.0", "gulp-csso": "^0.2.9",