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
This commit is contained in:
Aaron Jorbin 2014-10-28 20:44:33 +00:00
parent 74ed2089b4
commit c9dfc6bebb
1 changed files with 2 additions and 1 deletions

View File

@ -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,