-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathwebpack.prod.js
More file actions
42 lines (41 loc) · 831 Bytes
/
Copy pathwebpack.prod.js
File metadata and controls
42 lines (41 loc) · 831 Bytes
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
const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const TerserPlugin = require("terser-webpack-plugin");
const webpackDevConfig = require('./webpack.dev.js');
module.exports = (mode) => {
return {
...webpackDevConfig,
mode: 'production',
entry: {
mergely: './src/mergely.js',
'mergely.min': "./src/mergely.js",
},
output: {
...webpackDevConfig.output,
path: path.join(__dirname, 'lib'),
filename: './[name].js',
library: {
name: 'mergely',
type: 'umd',
}
},
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
test: /\.min\.js$/,
parallel: true
})
]
},
plugins: [
new CopyWebpackPlugin({
patterns: [{
from: 'src/mergely.css',
to: 'mergely.css',
toType: 'file'
}]
})
]
};
}