vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
7 years ago
|
// This config is for building dist files
|
||
6 years ago
|
const webpack = require('webpack');
|
||
5 years ago
|
const getWebpackConfig = require('./antd-tools/getWebpackConfig');
|
||
7 years ago
|
|
||
|
// noParse still leave `require('./locale' + name)` in dist files
|
||
|
// ignore is better
|
||
|
// http://stackoverflow.com/q/25384360
|
||
6 years ago
|
function ignoreMomentLocale(webpackConfig) {
|
||
|
delete webpackConfig.module.noParse;
|
||
|
webpackConfig.plugins.push(new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/));
|
||
7 years ago
|
}
|
||
|
|
||
6 years ago
|
function addLocales(webpackConfig) {
|
||
|
let packageName = 'antd-with-locales';
|
||
7 years ago
|
if (webpackConfig.entry['antd.min']) {
|
||
6 years ago
|
packageName += '.min';
|
||
7 years ago
|
}
|
||
6 years ago
|
webpackConfig.entry[packageName] = './index-with-locales.js';
|
||
|
webpackConfig.output.filename = '[name].js';
|
||
7 years ago
|
}
|
||
|
|
||
6 years ago
|
function externalMoment(config) {
|
||
7 years ago
|
config.externals.moment = {
|
||
|
root: 'moment',
|
||
|
commonjs2: 'moment',
|
||
|
commonjs: 'moment',
|
||
|
amd: 'moment',
|
||
6 years ago
|
};
|
||
7 years ago
|
}
|
||
|
|
||
6 years ago
|
const webpackConfig = getWebpackConfig(false);
|
||
7 years ago
|
if (process.env.RUN_ENV === 'PRODUCTION') {
|
||
6 years ago
|
webpackConfig.forEach(config => {
|
||
|
ignoreMomentLocale(config);
|
||
|
externalMoment(config);
|
||
|
addLocales(config);
|
||
|
});
|
||
7 years ago
|
}
|
||
|
|
||
6 years ago
|
module.exports = webpackConfig;
|