2018-11-28 15:00:03 +08:00
|
|
|
/* eslint no-param-reassign: 0 */
|
2016-10-15 17:04:30 +08:00
|
|
|
// This config is for building dist files
|
2019-08-01 15:28:16 +08:00
|
|
|
const getWebpackConfig = require('@ant-design/tools/lib/getWebpackConfig');
|
2019-12-06 11:22:47 +08:00
|
|
|
const IgnoreEmitPlugin = require('ignore-emit-webpack-plugin');
|
2019-12-25 15:18:31 +08:00
|
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
2020-05-22 18:46:03 +08:00
|
|
|
const BundleAnalyzerPluginCom = require('@bundle-analyzer/webpack-plugin');
|
2020-05-08 15:48:21 +08:00
|
|
|
const EsbuildPlugin = require('esbuild-webpack-plugin').default;
|
2019-12-26 15:25:46 +08:00
|
|
|
const darkVars = require('./scripts/dark-vars');
|
2020-03-29 10:39:46 +08:00
|
|
|
const compactVars = require('./scripts/compact-vars');
|
2016-06-06 16:36:55 +08:00
|
|
|
|
2018-12-11 17:42:45 +08:00
|
|
|
const { webpack } = getWebpackConfig;
|
|
|
|
|
2016-10-15 17:04:30 +08:00
|
|
|
// noParse still leave `require('./locale' + name)` in dist files
|
2018-11-28 12:33:09 +08:00
|
|
|
// ignore is better: http://stackoverflow.com/q/25384360
|
2016-10-08 16:12:19 +08:00
|
|
|
function ignoreMomentLocale(webpackConfig) {
|
|
|
|
delete webpackConfig.module.noParse;
|
|
|
|
webpackConfig.plugins.push(new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/));
|
|
|
|
}
|
|
|
|
|
2017-02-17 09:36:42 +08:00
|
|
|
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';
|
|
|
|
}
|
|
|
|
|
2017-10-19 19:06:16 +08:00
|
|
|
function externalMoment(config) {
|
|
|
|
config.externals.moment = {
|
|
|
|
root: 'moment',
|
|
|
|
commonjs2: 'moment',
|
|
|
|
commonjs: 'moment',
|
|
|
|
amd: 'moment',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-05-14 15:57:04 +08:00
|
|
|
function injectWarningCondition(config) {
|
|
|
|
config.module.rules.forEach(rule => {
|
|
|
|
// Remove devWarning if needed
|
|
|
|
if (rule.test.test('test.tsx')) {
|
|
|
|
rule.use = [
|
|
|
|
...rule.use,
|
|
|
|
{
|
|
|
|
loader: 'string-replace-loader',
|
|
|
|
options: {
|
|
|
|
search: 'devWarning(',
|
|
|
|
replace: "if (process.env.NODE_ENV !== 'production') devWarning(",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-05-22 18:46:03 +08:00
|
|
|
function addBundleAnalyzerPluginCom(config) {
|
|
|
|
if (!process.env.CIRCLECI || process.env.RUN_ENV !== 'PRODUCTION') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
config.plugins.push(
|
|
|
|
new BundleAnalyzerPluginCom({
|
|
|
|
token: process.env.BUNDLE_ANALYZER_TOKEN,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-03-29 10:39:46 +08:00
|
|
|
function processWebpackThemeConfig(themeConfig, theme, vars) {
|
|
|
|
themeConfig.forEach(config => {
|
2017-10-19 19:06:16 +08:00
|
|
|
ignoreMomentLocale(config);
|
|
|
|
externalMoment(config);
|
2020-03-29 10:39:46 +08:00
|
|
|
|
|
|
|
// rename default entry to ${theme} entry
|
|
|
|
Object.keys(config.entry).forEach(entryName => {
|
|
|
|
config.entry[entryName.replace('antd', `antd.${theme}`)] = config.entry[entryName];
|
|
|
|
delete config.entry[entryName];
|
|
|
|
});
|
|
|
|
|
|
|
|
// apply ${theme} less variables
|
|
|
|
config.module.rules.forEach(rule => {
|
|
|
|
// filter less rule
|
|
|
|
if (rule.test instanceof RegExp && rule.test.test('.less')) {
|
2020-05-08 15:48:21 +08:00
|
|
|
const lessRule = rule.use[rule.use.length - 1];
|
|
|
|
if (lessRule.options.lessOptions) {
|
|
|
|
lessRule.options.lessOptions.modifyVars = vars;
|
|
|
|
} else {
|
|
|
|
lessRule.options.modifyVars = vars;
|
|
|
|
}
|
2020-03-29 10:39:46 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const themeReg = new RegExp(`${theme}(.min)?\\.js(\\.map)?$`);
|
|
|
|
// ignore emit ${theme} entry js & js.map file
|
|
|
|
config.plugins.push(new IgnoreEmitPlugin(themeReg));
|
2017-10-19 19:06:16 +08:00
|
|
|
});
|
2020-03-29 10:39:46 +08:00
|
|
|
}
|
2019-12-18 21:07:14 +08:00
|
|
|
|
2020-03-29 10:39:46 +08:00
|
|
|
const webpackConfig = getWebpackConfig(false);
|
|
|
|
const webpackDarkConfig = getWebpackConfig(false);
|
|
|
|
const webpackCompactConfig = getWebpackConfig(false);
|
2020-05-08 15:48:21 +08:00
|
|
|
|
2020-05-14 20:54:49 +08:00
|
|
|
webpackConfig.forEach(config => {
|
|
|
|
injectWarningCondition(config);
|
|
|
|
});
|
|
|
|
|
2020-03-29 10:39:46 +08:00
|
|
|
if (process.env.RUN_ENV === 'PRODUCTION') {
|
|
|
|
webpackConfig.forEach(config => {
|
2020-03-27 12:57:37 +08:00
|
|
|
ignoreMomentLocale(config);
|
|
|
|
externalMoment(config);
|
2020-03-29 10:39:46 +08:00
|
|
|
addLocales(config);
|
|
|
|
// Reduce non-minified dist files size
|
|
|
|
config.optimization.usedExports = true;
|
2020-05-08 15:48:21 +08:00
|
|
|
// use esbuild
|
2020-06-02 14:57:29 +08:00
|
|
|
if (process.env.ESBUILD || process.env.CSB_REPO) {
|
2020-05-08 15:48:21 +08:00
|
|
|
config.optimization.minimizer[0] = new EsbuildPlugin();
|
|
|
|
}
|
2020-05-14 15:57:04 +08:00
|
|
|
|
2020-05-22 18:46:03 +08:00
|
|
|
config.plugins.push(
|
|
|
|
new BundleAnalyzerPlugin({
|
|
|
|
analyzerMode: 'static',
|
|
|
|
openAnalyzer: false,
|
|
|
|
reportFilename: '../report.html',
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
addBundleAnalyzerPluginCom(config);
|
2019-12-18 21:07:14 +08:00
|
|
|
});
|
2020-03-29 10:39:46 +08:00
|
|
|
|
|
|
|
processWebpackThemeConfig(webpackDarkConfig, 'dark', darkVars);
|
|
|
|
processWebpackThemeConfig(webpackCompactConfig, 'compact', compactVars);
|
2017-10-19 19:06:16 +08:00
|
|
|
}
|
|
|
|
|
2020-03-29 10:39:46 +08:00
|
|
|
module.exports = [...webpackConfig, ...webpackDarkConfig, ...webpackCompactConfig];
|