mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
dda45e4796
* feat: support narrow theme mode * chore: rename narrow to compact * chore: height part * chore: preview compact mode * chore: to make site corrected * chore: preview site * docs: 📖 document compact theme usage * docs: tweak theme doc * docs: 📖 Add description about double css bundle size * chore: preview * chore: for preview * chore: adjust pagination * chore: compact mode done! * chore: remove useless todo * chore: fix review bug * chore: fix review bug * chore: fix card margin * chore: fix review bug * chore: fix review bug * chore: improve i18n and transition * Update site/theme/static/common.less Co-Authored-By: 偏右 <afc163@gmail.com> * chore: fix button size and description padding * chore: update snapshots * chore: add compact css bundlesize limit * chore: compact dist support Co-authored-by: afc163 <afc163@gmail.com>
108 lines
3.6 KiB
JavaScript
108 lines
3.6 KiB
JavaScript
/* eslint no-param-reassign: 0 */
|
|
// This config is for building dist files
|
|
const getWebpackConfig = require('@ant-design/tools/lib/getWebpackConfig');
|
|
const PacktrackerPlugin = require('@packtracker/webpack-plugin');
|
|
const IgnoreEmitPlugin = require('ignore-emit-webpack-plugin');
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
|
const darkVars = require('./scripts/dark-vars');
|
|
const compactVars = require('./scripts/compact-vars');
|
|
|
|
const { webpack } = getWebpackConfig;
|
|
|
|
// noParse still leave `require('./locale' + name)` in dist files
|
|
// ignore is better: http://stackoverflow.com/q/25384360
|
|
function ignoreMomentLocale(webpackConfig) {
|
|
delete webpackConfig.module.noParse;
|
|
webpackConfig.plugins.push(new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/));
|
|
}
|
|
|
|
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 externalMoment(config) {
|
|
config.externals.moment = {
|
|
root: 'moment',
|
|
commonjs2: 'moment',
|
|
commonjs: 'moment',
|
|
amd: 'moment',
|
|
};
|
|
}
|
|
|
|
function processWebpackThemeConfig(themeConfig, theme, vars) {
|
|
themeConfig.forEach(config => {
|
|
ignoreMomentLocale(config);
|
|
externalMoment(config);
|
|
|
|
// 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')) {
|
|
rule.use[rule.use.length - 1].options.modifyVars = vars;
|
|
}
|
|
});
|
|
|
|
const themeReg = new RegExp(`${theme}(.min)?\\.js(\\.map)?$`);
|
|
// ignore emit ${theme} entry js & js.map file
|
|
config.plugins.push(new IgnoreEmitPlugin(themeReg));
|
|
|
|
// skip codesandbox ci
|
|
if (!process.env.CSB_REPO) {
|
|
// https://docs.packtracker.io/uploading-your-webpack-stats/webpack-plugin
|
|
config.plugins.push(
|
|
new PacktrackerPlugin({
|
|
project_token: '30c6a021-96c0-4d67-8bd2-0d2fcbd8962b',
|
|
upload: process.env.CI === 'true',
|
|
fail_build: false,
|
|
exclude_assets: name => ![`antd.${theme}.min.js`, `antd.${theme}.min.css`].includes(name),
|
|
}),
|
|
);
|
|
}
|
|
});
|
|
}
|
|
|
|
const webpackConfig = getWebpackConfig(false);
|
|
const webpackDarkConfig = getWebpackConfig(false);
|
|
const webpackCompactConfig = getWebpackConfig(false);
|
|
if (process.env.RUN_ENV === 'PRODUCTION') {
|
|
webpackConfig.forEach(config => {
|
|
ignoreMomentLocale(config);
|
|
externalMoment(config);
|
|
addLocales(config);
|
|
// Reduce non-minified dist files size
|
|
config.optimization.usedExports = true;
|
|
// skip codesandbox ci
|
|
if (!process.env.CSB_REPO) {
|
|
// https://docs.packtracker.io/uploading-your-webpack-stats/webpack-plugin
|
|
config.plugins.push(
|
|
new PacktrackerPlugin({
|
|
project_token: '30c6a021-96c0-4d67-8bd2-0d2fcbd8962b',
|
|
upload: process.env.CI === 'true',
|
|
fail_build: false,
|
|
exclude_assets: name => !['antd.min.js', 'antd.min.css'].includes(name),
|
|
}),
|
|
new BundleAnalyzerPlugin({
|
|
analyzerMode: 'static',
|
|
openAnalyzer: false,
|
|
}),
|
|
);
|
|
}
|
|
});
|
|
|
|
processWebpackThemeConfig(webpackDarkConfig, 'dark', darkVars);
|
|
processWebpackThemeConfig(webpackCompactConfig, 'compact', compactVars);
|
|
}
|
|
|
|
module.exports = [...webpackConfig, ...webpackDarkConfig, ...webpackCompactConfig];
|