Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2017-09-17 08:39:45 +0300
committerXhmikosR <xhmikosr@gmail.com>2017-09-26 17:16:27 +0300
commitf17443748dd266c0dc766e5252d7e4bcf9d04086 (patch)
treea1d5ac8934a428344db31a138680750d7615e388 /build/postcss.config.js
parent92d3536306d2de9b5e3a0ddb31f2a61e524b1e19 (diff)
Move Autoprefixer's config in package.json.
This is so other plugins can use it too.
Diffstat (limited to 'build/postcss.config.js')
-rw-r--r--build/postcss.config.js23
1 files changed, 1 insertions, 22 deletions
diff --git a/build/postcss.config.js b/build/postcss.config.js
index cadd98d03b..721e467c6e 100644
--- a/build/postcss.config.js
+++ b/build/postcss.config.js
@@ -5,27 +5,6 @@ module.exports = (ctx) => ({
sourcesContent: true
},
plugins: {
- autoprefixer: {
- browsers: [
- //
- // Official browser support policy:
- // https://getbootstrap.com/docs/4.0/getting-started/browsers-devices/#supported-browsers
- //
- 'Chrome >= 45', // Exact version number here is kinda arbitrary
- 'Firefox ESR',
- // 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.
- // 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
- 'Edge >= 12',
- 'Explorer >= 10',
- // Out of leniency, we prefix these 1 version further back than the official policy.
- 'iOS >= 9',
- 'Safari >= 9',
- // The following remain NOT officially supported, but we're lenient and include their prefixes to avoid severely breaking in them.
- 'Android >= 4.4',
- 'Opera >= 30'
- ]
- }
+ autoprefixer: {}
}
})