ant-design/webpack.config.js

32 lines
993 B
JavaScript
Raw Normal View History

2016-10-15 17:04:30 +08:00
// This config is for building dist files
const webpack = require('webpack');
const getWebpackConfig = require('antd-tools/lib/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';
}
module.exports = function (webpackConfig) {
2017-05-27 10:05:07 +08:00
webpackConfig = getWebpackConfig(webpackConfig, true);
if (process.env.RUN_ENV === 'PRODUCTION') {
2016-10-15 17:04:30 +08:00
webpackConfig.forEach((config) => {
ignoreMomentLocale(config);
2017-02-17 09:36:42 +08:00
addLocales(config);
});
}
return webpackConfig;
};