-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
41 lines (40 loc) · 941 Bytes
/
webpack.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
const pkg = require('./package.json');
const Webpack = require('webpack');
const Path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
module.exports = {
mode: 'production',
// mode: "development",
entry: Path.resolve(__dirname, './src/index.js'),
output: {
path: Path.resolve(__dirname, './dist'),
filename: 'h5-floating-menu.min.js',
library: 'H5FloatingMenu',
libraryTarget: 'umd',
libraryExport: 'default'
},
optimization: {
minimizer: [
new TerserPlugin({
extractComments: false
})
]
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader'
}
]
},
plugins: [
new Webpack.BannerPlugin(
[
'h5-floating-menu v' + pkg.version + ' (' + pkg.homepage + ')',
'',
'Copyright (C) 2019. Free to use, very pleased to reserve my name: "Congzhou" '
].join('\n')
)
]
};