2022-07-22 10:49:21 +03:00
|
|
|
const nrwlConfig = require('@nrwl/react/plugins/bundle-rollup');
|
|
|
|
const style9 = require('style9/rollup');
|
|
|
|
|
|
|
|
module.exports = config => {
|
|
|
|
const nxConfig = nrwlConfig(config);
|
|
|
|
const padding = [];
|
|
|
|
|
|
|
|
const postcssIndex = nxConfig.plugins.findIndex(p => p?.name === 'postcss');
|
|
|
|
if (postcssIndex !== -1) {
|
|
|
|
const postcss = nxConfig.plugins[postcssIndex];
|
|
|
|
|
|
|
|
padding.push(postcss);
|
|
|
|
nxConfig.plugins.splice(postcssIndex, 1);
|
|
|
|
|
2022-09-02 06:57:08 +03:00
|
|
|
const jsonIndex = nxConfig.plugins.findIndex(p => p?.name === 'json');
|
|
|
|
if (jsonIndex !== -1) {
|
|
|
|
padding.push(nxConfig.plugins[jsonIndex]);
|
|
|
|
nxConfig.plugins.splice(jsonIndex, 1);
|
|
|
|
}
|
|
|
|
|
2022-07-22 10:49:21 +03:00
|
|
|
const style9Plugin = style9({
|
|
|
|
minifyProperties: true,
|
|
|
|
incrementalClassnames: true,
|
|
|
|
});
|
|
|
|
padding.push(style9Plugin);
|
|
|
|
|
|
|
|
const rpt2Index = nxConfig.plugins.findIndex(p => p?.name === 'rpt2');
|
|
|
|
if (rpt2Index !== -1) {
|
|
|
|
// padding.push(nxConfig.plugins[rpt2Index]);
|
|
|
|
nxConfig.plugins.splice(rpt2Index, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
...nxConfig,
|
|
|
|
plugins: [...padding, ...nxConfig.plugins].filter(v => v),
|
|
|
|
};
|
|
|
|
};
|