Build Tools: Add Microsoft Edge to Autoprefixer options.

Props christophherr.
Fixes #34550.

git-svn-id: https://develop.svn.wordpress.org/trunk@35488 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2015-11-02 20:43:55 +00:00
parent c9f7e05f7b
commit 88d63f743e
1 changed files with 9 additions and 1 deletions

View File

@ -24,7 +24,15 @@ module.exports = function(grunt) {
options: {
processors: [
autoprefixer({
browsers: ['Android >= 2.1', 'Chrome >= 21', 'Explorer >= 7', 'Firefox >= 17', 'Opera >= 12.1', 'Safari >= 6.0'],
browsers: [
'Android >= 2.1',
'Chrome >= 21',
'Edge >= 12',
'Explorer >= 7',
'Firefox >= 17',
'Opera >= 12.1',
'Safari >= 6.0'
],
cascade: false
})
]