-
Notifications
You must be signed in to change notification settings - Fork 80
/
dll.config.js
46 lines (44 loc) · 914 Bytes
/
dll.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
const path = require('path');
const webpack = require('webpack');
const node_modules = path.resolve(__dirname, 'node_modules');
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',
'lodash',
'diff',
],
},
module: {
noParse: [/(levelup)/],
},
output: {
path: path.join(__dirname, 'dist/dll/'),
filename: '[name].dll.js',
library: '[name]_[hash]',
libraryTarget: 'this',
},
plugins: [
new webpack.DllPlugin({
path: path.join(__dirname, 'dist/dll/', '[name]-manifest.json'),
name: '[name]_[hash]',
}),
],
};