ant-design/webpack.config.js

31 lines
883 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$/));
}
2016-10-15 17:04:30 +08:00
// Fix ie8 compatibility
function es3ify(webpackConfig) {
webpackConfig.module.loaders.unshift({
test: /\.(tsx|jsx?)$/,
loader: 'es3ify-loader',
});
}
module.exports = function (webpackConfig) {
webpackConfig = getWebpackConfig(webpackConfig);
if (process.env.RUN_ENV === 'PRODUCTION') {
2016-10-15 17:04:30 +08:00
webpackConfig.forEach((config) => {
es3ify(config);
ignoreMomentLocale(config);
});
}
return webpackConfig;
};