Update postcss dependencies

This commit is contained in:
Tom Raithel
2017-11-22 14:16:47 +01:00
parent ba45d52f5a
commit 32f7c98145
4 changed files with 399 additions and 183 deletions

19
postcss.config.js Normal file
View File

@@ -0,0 +1,19 @@
const postcssEasyImport = require('postcss-easy-import');
const postcssNested = require('postcss-nested');
const postcssCustomMedia = require('postcss-custom-media');
const postcssCssVariables = require('postcss-css-variables');
const postcssMqPacker = require('css-mqpacker');
const postcssAutoprefixer = require('autoprefixer');
module.exports = {
plugins: [
postcssEasyImport(),
postcssNested(),
postcssCustomMedia(),
postcssCssVariables(),
postcssMqPacker(),
postcssAutoprefixer({
browsers: '> 5%',
}),
],
};