commit 374b1dfc3acca38bcbe2edf0ce13aa2b38966265
parent 4acaae92d9abf21911b1ed6501e2ab058d3f4d10
Author: TheoMer <6e240757@use.startmail.com>
Date: Sun, 7 Aug 2016 11:45:00 +0100
Added postcss-flexbugs-fixes plugin... (#795)
Diffstat:
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/package.json b/package.json
@@ -86,6 +86,7 @@
"postcss-custom-media": "^5.0.1",
"postcss-custom-properties": "^5.0.1",
"postcss-custom-selectors": "^3.0.0",
+ "postcss-flexbugs-fixes": "^2.0.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.9.1",
"postcss-media-minmax": "^2.1.2",
diff --git a/tools/webpack.config.js b/tools/webpack.config.js
@@ -183,6 +183,9 @@ const config = {
// Transforms :not() W3C CSS Level 4 pseudo class to :not() CSS Level 3 selectors
// https://github.com/postcss/postcss-selector-not
require('postcss-selector-not')(),
+ // Postcss flexbox bug fixer
+ // https://github.com/luisrudge/postcss-flexbugs-fixes
+ require('postcss-flexbugs-fixes')(),
// Add vendor prefixes to CSS rules using values from caniuse.com
// https://github.com/postcss/autoprefixer
require('autoprefixer')({ browsers: AUTOPREFIXER_BROWSERS }),