mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Gruntfile: Add comments explaining CSS prefixing policy
[skip sauce]
This commit is contained in:
parent
c960169807
commit
5482e2cc96
1 changed files with 20 additions and 6 deletions
26
Gruntfile.js
26
Gruntfile.js
|
@ -23,19 +23,33 @@ module.exports = function (grunt) {
|
||||||
var mq4HoverShim = require('mq4-hover-shim');
|
var mq4HoverShim = require('mq4-hover-shim');
|
||||||
var autoprefixer = require('autoprefixer')({
|
var autoprefixer = require('autoprefixer')({
|
||||||
browsers: [
|
browsers: [
|
||||||
'Android 2.3',
|
//
|
||||||
'Android >= 4',
|
// Official browser support policy:
|
||||||
'Chrome >= 35',
|
// http://v4-alpha.getbootstrap.com/getting-started/browsers-devices/#supported-browsers
|
||||||
'Firefox >= 31',
|
//
|
||||||
|
'Chrome >= 35', // Exact version number here is kinda arbitrary
|
||||||
|
// Rather than using Autoprefixer's native "Firefox ESR" version specifier string,
|
||||||
|
// we deliberately hardcode the number. This is to avoid unwittingly severely breaking the previous ESR in the event that:
|
||||||
|
// (a) we happen to ship a new Bootstrap release soon after the release of a new ESR,
|
||||||
|
// such that folks haven't yet had a reasonable amount of time to upgrade; and
|
||||||
|
// (b) the new ESR has unprefixed CSS properties/values whose absence would severely break webpages
|
||||||
|
// (e.g. `box-sizing`, as opposed to `background: linear-gradient(...)`).
|
||||||
|
// Since they've been unprefixed, Autoprefixer will stop prefixing them,
|
||||||
|
// thus causing them to not work in the previous ESR (where the prefixes were required).
|
||||||
|
'Firefox >= 31', // Current Firefox Extended Support Release (ESR)
|
||||||
// Note: Edge versions in Autoprefixer & Can I Use refer to the EdgeHTML rendering engine version,
|
// Note: Edge versions in Autoprefixer & Can I Use refer to the EdgeHTML rendering engine version,
|
||||||
// NOT the Edge app version shown in Edge's "About" screen.
|
// NOT the Edge app version shown in Edge's "About" screen.
|
||||||
// For example, at the time of writing, Edge 20 on an up-to-date system uses EdgeHTML 12.
|
// For example, at the time of writing, Edge 20 on an up-to-date system uses EdgeHTML 12.
|
||||||
// See also https://github.com/Fyrd/caniuse/issues/1928
|
// See also https://github.com/Fyrd/caniuse/issues/1928
|
||||||
'Edge >= 12',
|
'Edge >= 12',
|
||||||
'Explorer >= 9',
|
'Explorer >= 9',
|
||||||
|
// Out of leniency, we prefix these 1 version further back than the official policy.
|
||||||
'iOS >= 7',
|
'iOS >= 7',
|
||||||
'Opera >= 12',
|
'Safari >= 7.1',
|
||||||
'Safari >= 7.1'
|
// The following remain NOT officially supported, but we're lenient and include their prefixes to avoid severely breaking in them.
|
||||||
|
'Android 2.3',
|
||||||
|
'Android >= 4',
|
||||||
|
'Opera >= 12'
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue