-
Notifications
You must be signed in to change notification settings - Fork 139
/
webpack-config.js
166 lines (150 loc) · 4.9 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
const path = require('path');
const webpack = require('webpack');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const getRules = require('./webpack-common.loader');
const TerserPlugin = require('terser-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const FileManagerPlugin = require('filemanager-webpack-plugin');
const { name, version } = require('./package.json');
const buildPath = path.join(__dirname, './dist');
const srcDir = path.join(__dirname, './src');
const resolve = dir => path.resolve(__dirname, dir);
const config = {
mode: 'production',
// 入口文件所在的上下文
context: srcDir,
// 入口文件配置
entry: {
index: './module/index.js',
'angular-1.x': './framework/angular-1.x/js/index.js',
'react': './framework/react/js/index.js',
'vue2': './framework/vue/js/index.js'
},
// 配置模块如何解析
resolve: {
extensions: ['.js', '.ts'], // 当requrie的模块找不到时,添加这些后缀
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@common': resolve('src/common'),
'@jTool': resolve('src/jTool'),
'@module': resolve('src/module')
}
},
// 文件导出的配置
output: {
path: buildPath,
filename: '[name].js',
// 通过script标签引入时,由index.js中设置的window.GridManager将被覆盖为{default: {..gm object}}。原因是通过library设置所返回的值为{default: {..gm object}}
// library: 'GridManager', // 引入后可以通过全局变量GridManager来使用
// 允许与CommonJS,AMD和全局变量一起使用。
// 如: `import gridManager from 'gridmanager';` `const gridManager = require('gridmanager').default;`
libraryTarget: 'umd'
},
// externals: ['react', 'react-dom'],
// externals: ['angular', 'react', 'react-dom', 'vue'],
externals: {
'angular': 'angular',
'react': {
root: 'React',
commonjs: 'react',
commonjs2: 'react',
amd: 'react'
},
'react-dom': {
root: 'ReactDOM',
commonjs: 'react-dom',
commonjs2: 'react-dom',
amd: 'react-dom'
},
'vue': {
root: 'Vue',
commonjs: 'vue',
commonjs2: 'vue',
amd: 'vue'
}
},
// 优化代码
optimization: {
minimize: true,
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 CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: [resolve('./dist')]
}),
// 将样式文件 抽取至独立文件内
new MiniCssExtractPlugin({
filename: 'index.css',
chunkFilename: '[id].css'
}),
// 将文件复制到构建目录
// CopyWebpackPlugin-> https://github.com/webpack-contrib/copy-webpack-plugin
new CopyWebpackPlugin({
patterns: [
{from: __dirname + '/src/demo/', to: 'demo/', toType: 'dir'},
{from: path.join(__dirname, '/package.json'), to: './'},
{from: path.join(__dirname, '/README.md'), to: './'}
]
}),
// 配置环境变量
new webpack.DefinePlugin({
'process.env': {
VERSION: JSON.stringify(version)
}
}),
// 构建带版本号的zip包
new FileManagerPlugin({
onStart: {
delete: [
'./zip'
]
},
onEnd: {
mkdir: ['./zip', './tempzip'],
copy: [{
source: './dist/**/*.{html,css,js}',
destination: `./tempzip/${name}-${version}/`
}],
archive: [
{source: `./tempzip/${name}-${version}`, destination: `./zip/${name}-${version}.zip`}
],
delete: [
'./tempzip',
'./dist/demo' // 防止将demo传至npm
]
}
})
],
// 处理项目中的不同类型的模块。
module: {
rules: getRules()
}
};
module.exports = config;