-
Notifications
You must be signed in to change notification settings - Fork 79
/
dll-prod.config.js
59 lines (57 loc) · 1.19 KB
/
dll-prod.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
const path = require('path');
const webpack = require('webpack');
const node_modules = path.resolve(__dirname, 'node_modules');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
module.exports = {
entry: {
libs: [
'react',
'react-dom',
'react-addons-css-transition-group',
'react-addons-pure-render-mixin',
'react-draggable',
'react-joyride',
'react-json-pretty',
'react-router',
'react-scrollbar/dist/no-css',
'react-select',
'moment',
'core-js/stable',
'regenerator-runtime/runtime',
'lifespan',
'nexus-flux',
'remutable',
'bluebird',
'jszip',
'xxhashjs',
'lodash',
'diff',
],
},
module: {
noParse: [/(levelup)/],
},
output: {
path: path.join(__dirname, 'dist/dll/'),
filename: '[name].dll.js',
library: '[name]_[hash]',
libraryTarget: 'this',
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production'),
TESTING_FONT: false,
},
}),
new webpack.DllPlugin({
path: path.join(__dirname, 'dist/dll/', '[name]-manifest.json'),
name: '[name]_[hash]',
}),
new UglifyJsPlugin({
sourceMap: true,
include: __dirname,
extractComments: true,
}),
],
};