Closed steveblue closed 7 years ago
This could be fixed by merging the new postcss flow from the prod build to the library build.
const postcss = require('./postcss.' + env + '.js'); let postcssConfig = ' -u'; ... /* Process PostCSS CLI plugins for the --use argument */ for (let cssProp in postcss.plugins) { postcssConfig += ' ' + cssProp; } ... let postcss = exec('postcss ./' + outFile + ' -c ./postcss.' + env + '.js -r' + postcssConfig
Fixed in 4.3.6
This could be fixed by merging the new postcss flow from the prod build to the library build.