mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
* chore: bump prettier v3 and format all code * chore: mjs config * chore: revert * chore: revert * chore: update lock
45 lines
1.0 KiB
JavaScript
45 lines
1.0 KiB
JavaScript
const { join } = require('path');
|
|
const { existsSync } = require('fs');
|
|
const { ROOT } = require('./shared.cjs');
|
|
|
|
function getRootPostcssConfig() {
|
|
const ROOT_POSTCSS_CONFIG_FILE = join(ROOT, 'postcss.config.js');
|
|
if (existsSync(ROOT_POSTCSS_CONFIG_FILE)) {
|
|
return require(ROOT_POSTCSS_CONFIG_FILE);
|
|
}
|
|
return { plugins: [] };
|
|
}
|
|
|
|
function getPostcssPlugins(rootConfig) {
|
|
const plugins = rootConfig.plugins || [];
|
|
|
|
if (Array.isArray(plugins)) {
|
|
const hasAutoprefixerPlugin = plugins.find((plugin) => {
|
|
if (typeof plugin === 'object') {
|
|
return plugin.postcssPlugin === 'autoprefixer';
|
|
}
|
|
return plugin === 'autoprefixer';
|
|
});
|
|
if (hasAutoprefixerPlugin) {
|
|
return plugins;
|
|
}
|
|
|
|
return [require('autoprefixer'), ...plugins];
|
|
}
|
|
|
|
return {
|
|
autoprefixer: {},
|
|
...plugins,
|
|
};
|
|
}
|
|
|
|
function resolvePostcssConfig() {
|
|
const rootConfig = getRootPostcssConfig();
|
|
return {
|
|
...rootConfig,
|
|
plugins: getPostcssPlugins(rootConfig),
|
|
};
|
|
}
|
|
|
|
module.exports = resolvePostcssConfig();
|