-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack-config.js
100 lines (85 loc) · 2.68 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
const path = require('path');
const webpack = require('webpack');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const getRules = require('./webpack-common.loader');
const buildPath = path.join(__dirname, './dist');
const TerserPlugin = require('terser-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const CleanPlugin = require('clean-webpack-plugin');
const { version } = require('./package.json');
const srcDir = path.join(__dirname, './src');
const config = {
mode: 'production',
// 入口文件所在的上下文
context: srcDir,
// 入口文件配置
entry: {
js: './js/index.js'
},
// 配置模块如何解析
resolve:{
extensions: [".js"] //当requrie的模块找不到时,添加这些后缀
},
// 文件导出的配置
output:{
path: buildPath ,
filename: "js/gm-react.js",
libraryTarget: 'umd'
},
externals: ['react', 'react-dom'],
// 优化代码
optimization: {
minimizer: [
// 压缩js
new TerserPlugin({
cache: true,
parallel: true,
sourceMap: false,
terserOptions: {
warnings: false,
ie8: false,
output: {
comments: false
}
}
}),
// 压缩css
new OptimizeCssAssetsPlugin({
assetNameRegExp: /\.css$/g,
cssProcessor: require('cssnano'),
cssProcessorOptions: {
discardComments: {removeAll: true},
minifyGradients: true
},
canPrint: true
})
]
},
// 以插件形式定制webpack构建过程
plugins: [
new CleanPlugin([buildPath]),
// 将样式文件 抽取至独立文件内
new MiniCssExtractPlugin({
filename: 'css/gm-react.css',
chunkFilename: '[id].css'
}),
// 将文件复制到构建目录
// CopyWebpackPlugin-> https://github.com/webpack-contrib/copy-webpack-plugin
new CopyWebpackPlugin([
{from: path.join(__dirname, '/package.json'), to: '', toType: 'file'},
{from: path.join(__dirname, '/README.md'), to: '', toType: 'file'}
]),
// 配置环境变量
new webpack.DefinePlugin({
'process.env': {
VERSION: JSON.stringify(version)
}
})
],
// 处理项目中的不同类型的模块。
module: {
rules: getRules()
}
};
module.exports = config;