summaryrefslogtreecommitdiff
path: root/minionlivesmatter/templates/assets/bootstrap/grunt/postcss.config.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-03-25 13:13:57 +0100
committerschneefux <schneefux+commit@schneefux.xyz>2017-03-25 13:13:57 +0100
commitd25ff2bddd44b9dac1ceb248424109d1782dd211 (patch)
tree34fcfd824a1a72e7b4d431b688adcea532b62180 /minionlivesmatter/templates/assets/bootstrap/grunt/postcss.config.js
parenta2cbdd1b88ac723e5e441c0a3c22636f0a8c4dfd (diff)
downloadmeta-d25ff2bddd44b9dac1ceb248424109d1782dd211.tar.gz
meta-d25ff2bddd44b9dac1ceb248424109d1782dd211.zip
add minionlivesmatter as submodule
Diffstat (limited to 'minionlivesmatter/templates/assets/bootstrap/grunt/postcss.config.js')
-rw-r--r--minionlivesmatter/templates/assets/bootstrap/grunt/postcss.config.js41
1 files changed, 0 insertions, 41 deletions
diff --git a/minionlivesmatter/templates/assets/bootstrap/grunt/postcss.config.js b/minionlivesmatter/templates/assets/bootstrap/grunt/postcss.config.js
deleted file mode 100644
index 803078a..0000000
--- a/minionlivesmatter/templates/assets/bootstrap/grunt/postcss.config.js
+++ /dev/null
@@ -1,41 +0,0 @@
-module.exports = (ctx) => ({
- map: ctx.file.dirname.startsWith('docs') ? false : {
- inline: false,
- annotation: true,
- sourcesContent: true
- },
- plugins: {
- autoprefixer: {
- browsers: [
- //
- // Official browser support policy:
- // https://v4-alpha.getbootstrap.com/getting-started/browsers-devices/#supported-browsers
- //
- '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 >= 38', // Current Firefox Extended Support Release (ESR); https://www.mozilla.org/en-US/firefox/organizations/faq/
- // 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 >= 8',
- 'Safari >= 8',
- // 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'
- ]
- },
- 'postcss-flexbugs-fixes': {}
- }
-})