ant-design-vue/webpack.build.config.js

41 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-03-18 19:59:38 +08:00
// This config is for building dist files
2019-01-12 11:33:27 +08:00
const webpack = require('webpack');
const getWebpackConfig = require('./antd-tools/getWebpackConfig');
2018-03-18 19:59:38 +08:00
// noParse still leave `require('./locale' + name)` in dist files
// ignore is better
// http://stackoverflow.com/q/25384360
2019-01-12 11:33:27 +08:00
function ignoreMomentLocale(webpackConfig) {
delete webpackConfig.module.noParse;
webpackConfig.plugins.push(new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/));
2018-03-18 19:59:38 +08:00
}
2019-01-12 11:33:27 +08:00
function addLocales(webpackConfig) {
let packageName = 'antd-with-locales';
2018-03-18 19:59:38 +08:00
if (webpackConfig.entry['antd.min']) {
2019-01-12 11:33:27 +08:00
packageName += '.min';
2018-03-18 19:59:38 +08:00
}
2019-01-12 11:33:27 +08:00
webpackConfig.entry[packageName] = './index-with-locales.js';
webpackConfig.output.filename = '[name].js';
2018-03-18 19:59:38 +08:00
}
2019-01-12 11:33:27 +08:00
function externalMoment(config) {
2018-03-18 19:59:38 +08:00
config.externals.moment = {
root: 'moment',
commonjs2: 'moment',
commonjs: 'moment',
amd: 'moment',
2019-01-12 11:33:27 +08:00
};
2018-03-18 19:59:38 +08:00
}
2019-01-12 11:33:27 +08:00
const webpackConfig = getWebpackConfig(false);
2018-03-18 19:59:38 +08:00
if (process.env.RUN_ENV === 'PRODUCTION') {
2019-01-12 11:33:27 +08:00
webpackConfig.forEach(config => {
ignoreMomentLocale(config);
externalMoment(config);
addLocales(config);
});
2018-03-18 19:59:38 +08:00
}
2019-01-12 11:33:27 +08:00
module.exports = webpackConfig;