mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-08 11:50:03 +01:00
ac2395acf1
This updates the build processes within Twenty Nineteen to use the latest major version of PostCSS, 8.x. There are no changes to any built files as a result of these updates. Props desrosj, peterwilsoncc. Fixes #57554. Built from https://develop.svn.wordpress.org/trunk@55458 git-svn-id: http://core.svn.wordpress.org/trunk@54991 1a063a9b-81f0-0310-95a4-ce76da25c4cd
16 lines
255 B
JavaScript
16 lines
255 B
JavaScript
var postcssFocusWithin = require('postcss-focus-within');
|
|
|
|
module.exports = {
|
|
plugins: {
|
|
autoprefixer: {}
|
|
}
|
|
};
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
postcssFocusWithin({
|
|
disablePolyfillReadyClass: true
|
|
})
|
|
]
|
|
};
|