From c9dfc6bebbc920e20d9e8e7b9d070a5ccec64a0e Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Tue, 28 Oct 2014 20:44:33 +0000 Subject: [PATCH] Don't cascade autoprefixer output Autoprefixer changed the default for cascade from false to true. Our css coding standards do not include the cascade for browser prefixes. Introduced in r30067 see #30141 git-svn-id: https://develop.svn.wordpress.org/trunk@30069 602fd350-edb4-49c9-b593-d223f7449a82 --- Gruntfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 5d614b142a..01d6a143ae 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -13,7 +13,8 @@ module.exports = function(grunt) { grunt.initConfig({ autoprefixer: { options: { - browsers: ['Android >= 2.1', 'Chrome >= 21', 'Explorer >= 7', 'Firefox >= 17', 'Opera >= 12.1', 'Safari >= 6.0'] + browsers: ['Android >= 2.1', 'Chrome >= 21', 'Explorer >= 7', 'Firefox >= 17', 'Opera >= 12.1', 'Safari >= 6.0'], + cascade: false }, core: { expand: true,