-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.prod.config.js
115 lines (114 loc) · 3.46 KB
/
webpack.prod.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
const webpack = require('webpack');
const path = require('path');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const pkg = require('./package.json');
const pathsToClean = [
'',
];
const cleanOptions = {
root: path.resolve(__dirname, 'dist'),
verbose: true,
};
const isClean = process.argv.length > 5;
const plugins = [
// 로더들에게 옵션을 넣어주는 플러그인
new webpack.LoaderOptionsPlugin({
minimize: true,
}),
];
if (isClean) {
// Build시 chunk 파일 삭제
plugins.push(new CleanWebpackPlugin(pathsToClean, cleanOptions));
}
module.exports = {
mode: 'production',
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader?cacheDirectory',
include: path.resolve(__dirname, 'src'),
options: {
presets: [
['es2015', { loose: true, modules: false }],
'stage-0',
'react',
],
plugins: [
'syntax-async-functions',
'syntax-dynamic-import',
'dynamic-import-webpack',
'transform-decorators-legacy',
],
},
exclude: /node_modules/,
},
{
test: /\.(css|less)$/,
use: ['style-loader', 'css-loader?importLoaders=1', 'less-loader'],
},
{
test: /\.(ico|png|jpg|jpeg|gif|svg|woff|woff2|ttf|eot)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader',
options: {
name: 'fonts/[hash].[ext]',
limit: 10000,
},
},
],
},
optimization: {
// splitChunks: {
// cacheGroups: {
// vendor: {
// test: /node_modules/,
// chunks: 'initial',
// name: 'vendor',
// enforce: true,
// },
// },
// },
noEmitOnErrors: true,
minimizer: [
// we specify a custom UglifyJsPlugin here to get source maps in production
new UglifyJsPlugin({
include: /\.min\.js$/,
cache: true,
parallel: true,
uglifyOptions: {
warnings: false,
compress: {
warnings: false,
unused: true, // tree shaking(export된 모듈 중 사용하지 않는 모듈은 포함하지않음)
},
ecma: 6,
mangle: true,
unused: true,
},
sourceMap: true,
}),
],
},
resolve: {
alias: {
'ag-grid-root': path.resolve(__dirname, '/node_modules/ag-grid'),
},
},
entry: {
[pkg.name]: path.resolve(__dirname, 'src/index.js'),
[`${pkg.name}.min`]: path.resolve(__dirname, 'src/index.js'),
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
chunkFilename: '[id].js',
library: `${pkg.name}.js`,
libraryTarget: 'umd',
umdNamedDefine: true,
},
externals: {
react: 'react',
},
plugins,
};