-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.dll.js
63 lines (59 loc) · 1.17 KB
/
webpack.dll.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
60
61
62
63
/* eslint-env node */
const path = require('path');
const webpack = require('webpack');
const vendorPackages = [
'react',
'react-dom',
'react-router',
'redux',
'material-ui',
'radium',
'pouchdb',
'lodash',
'cheerio',
'bluebird'
];
const baseConfig = Object.assign({}, require('./webpackBaseConfig'), {
entry: {
vendor: vendorPackages
},
plugins: [
new webpack.DllPlugin({
path: path.join(__dirname, 'dll', '[name]-manifest.json'),
name: '[name]',
context: path.resolve(__dirname, 'src')
}),
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.optimize.UglifyJsPlugin({
mangle: true,
sourcemap: false,
compress: {
sequences: true,
dead_code: true,
booleans: true,
drop_console: true,
properties: true,
loops: true,
if_return: true,
comparisons: true,
warnings: false
}
})
]
});
module.exports = [
Object.assign({}, baseConfig, {
output: {
path: path.join(__dirname, 'electron/js'),
filename: 'dll.[name].js',
library: '[name]'
}
}),
Object.assign({}, baseConfig, {
output: {
path: path.join(__dirname, 'extension_chrome/js'),
filename: 'dll.[name].js',
library: '[name]'
}
})
];