ant-design/webpack.config.js

52 lines
1.5 KiB
JavaScript
Raw Normal View History

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
const getWebpackConfig = require('antd-tools/lib/getWebpackConfig');
2019-06-02 19:46:15 +08:00
const PacktrackerPlugin = require('@packtracker/webpack-plugin');
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
// ignore is better: http://stackoverflow.com/q/25384360
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',
};
}
const webpackConfig = getWebpackConfig(false);
if (process.env.RUN_ENV === 'PRODUCTION') {
2018-12-07 16:17:45 +08:00
webpackConfig.forEach(config => {
2017-10-19 19:06:16 +08:00
ignoreMomentLocale(config);
externalMoment(config);
addLocales(config);
2019-06-02 19:46:15 +08:00
// https://docs.packtracker.io/uploading-your-webpack-stats/webpack-plugin
config.plugins.push(
new PacktrackerPlugin({
project_token: '8adbb892-ee4a-4d6f-93bb-a03219fb6778',
upload: process.env.CI === 'true',
fail_build: true,
2019-06-05 22:18:45 +08:00
exclude_assets: name => !['antd.min.js', 'antd.min.css'].includes(name),
2019-06-02 19:46:15 +08:00
}),
);
2017-10-19 19:06:16 +08:00
});
}
2017-10-19 21:15:48 +08:00
module.exports = webpackConfig;