ant-design/webpack.config.js

53 lines
1.3 KiB
JavaScript
Raw Normal View History

2016-04-06 18:07:54 +08:00
const webpack = require('atool-build/lib/webpack');
module.exports = function(webpackConfig) {
if (process.env.ANTD === 'WEBSITE') {
webpackConfig.entry = {
index: './site/entry/index.jsx',
};
webpackConfig.resolve.root = process.cwd();
webpackConfig.resolve.alias = {
antd: 'index',
BrowserDemo: 'site/component/BrowserDemo',
};
}
if (process.env.ANTD === 'PRODUCTION') {
2016-04-06 18:07:54 +08:00
const entry = ['./style/index.less', './index.js'];
webpackConfig.entry = {
2016-04-06 18:07:54 +08:00
'antd.min': entry,
};
webpackConfig.externals = {
'react': {
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react'
},
'react-dom': {
root: 'ReactDOM',
commonjs2: 'react-dom',
commonjs: 'react-dom',
amd: 'react-dom'
2015-12-03 15:23:54 +08:00
}
};
webpackConfig.output.library = 'antd';
webpackConfig.output.libraryTarget = 'umd';
2016-04-06 18:07:54 +08:00
const uncompressedWebpackConfig = Object.assign({}, webpackConfig);
uncompressedWebpackConfig.entry = {
antd: entry,
};
uncompressedWebpackConfig.plugins = webpackConfig.plugins.filter((plugin) => {
return !(plugin instanceof webpack.optimize.UglifyJsPlugin);
});
return [
webpackConfig,
uncompressedWebpackConfig,
];
}
2015-06-16 20:10:30 +08:00
return webpackConfig;
2015-05-21 20:36:13 +08:00
};