mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
64 lines
1.7 KiB
JavaScript
64 lines
1.7 KiB
JavaScript
/* eslint no-param-reassign: 0 */
|
|
// This config is for building dist files
|
|
const getWebpackConfig = require('@ant-design/tools/lib/getWebpackConfig');
|
|
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
|
|
const { EsbuildPlugin } = require('esbuild-loader');
|
|
const DuplicatePackageCheckerPlugin = require('duplicate-package-checker-webpack-plugin');
|
|
|
|
function addLocales(webpackConfig) {
|
|
let packageName = 'antd-with-locales';
|
|
if (webpackConfig.entry['antd.min']) {
|
|
packageName += '.min';
|
|
}
|
|
webpackConfig.entry[packageName] = './index-with-locales.js';
|
|
webpackConfig.output.filename = '[name].js';
|
|
}
|
|
|
|
function externalDayjs(config) {
|
|
config.externals.dayjs = {
|
|
root: 'dayjs',
|
|
commonjs2: 'dayjs',
|
|
commonjs: 'dayjs',
|
|
amd: 'dayjs',
|
|
};
|
|
}
|
|
|
|
const webpackConfig = getWebpackConfig(false);
|
|
|
|
if (process.env.RUN_ENV === 'PRODUCTION') {
|
|
webpackConfig.forEach((config) => {
|
|
addLocales(config);
|
|
externalDayjs(config);
|
|
// Reduce non-minified dist files size
|
|
config.optimization.usedExports = true;
|
|
// use esbuild
|
|
if (process.env.ESBUILD || process.env.CSB_REPO) {
|
|
config.optimization.minimizer[0] = new EsbuildPlugin({
|
|
target: 'es2015',
|
|
css: true,
|
|
});
|
|
}
|
|
|
|
if (!process.env.CI || process.env.ANALYZER) {
|
|
config.plugins.push(
|
|
new BundleAnalyzerPlugin({
|
|
analyzerMode: 'static',
|
|
openAnalyzer: false,
|
|
reportFilename: '../report.html',
|
|
}),
|
|
);
|
|
}
|
|
|
|
if (!process.env.NO_DUP_CHECK) {
|
|
config.plugins.push(
|
|
new DuplicatePackageCheckerPlugin({
|
|
verbose: true,
|
|
emitError: true,
|
|
}),
|
|
);
|
|
}
|
|
});
|
|
}
|
|
|
|
module.exports = [...webpackConfig];
|