-
Notifications
You must be signed in to change notification settings - Fork 10
/
webpack.config.js
136 lines (128 loc) · 2.83 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
/* eslint-disable */
const path = require('path');
const webpack = require('webpack');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const loaders = [
{
test: /\.jsx?$/,
exclude: /(node_modules)/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env', '@babel/preset-react']
}
}
},
{
test: /\.tsx?$/,
exclude: /node_modules/,
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env', '@babel/preset-react', '@babel/preset-typescript']
}
}, // 先解析ts和tsx,rule规则从下往上
{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {}
},
'css-loader'
]
},
{
test: /\.less$/,
use: [MiniCssExtractPlugin.loader, 'css-loader', 'postcss-loader', 'less-loader']
},
{
test: /\.svg$/,
use: [
{
loader: 'svg-inline-loader'
}
]
},
{
test: /\.(png|jpg|gif)$/,
use: [
{
loader: 'file-loader',
options: {
name: '/static/[name]-[hash].[ext]'
}
}
]
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
use: [
{
loader: 'file-loader',
options: {
name: '/static/[name]-[hash].[ext]'
}
}
]
}
];
const config = {
resolve: {
extensions: ['.ts', '.tsx', '.web.js', '.js', '.jsx'],
},
entry: path.join(__dirname, './index.tsx'),
output: {
path: path.join(__dirname, './dist'),
filename: 'quill-react-commercial.min.js',
library: 'RichTextEditor',
libraryTarget: 'umd',
umdNamedDefine: true,
},
module: {
rules: loaders,
},
mode: 'production',
devtool: 'cheap-module-source-map',
plugins: [
new CleanWebpackPlugin({
cleanAfterEveryBuildPatterns: ['dist'],
}),
// new webpack.ProvidePlugin({
// 'window.Quill': 'quill/dist/quill.js',
// Quill: 'quill/dist/quill.js'
// }),
// new webpack.optimize.OccurenceOrderPlugin(),
new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
filename: 'quill-react-commercial.min.css',
}),
new webpack.optimize.AggressiveMergingPlugin(),
],
performance: {
maxAssetSize: 1000000,
hints: 'warning',
},
externals: {
react: {
commonjs: 'react',
commonjs2: 'react',
amd: 'react',
root: 'React',
},
'react-dom': {
commonjs: 'react-dom',
commonjs2: 'react-dom',
amd: 'react-dom',
root: 'ReactDOM',
},
'react-dom/server': {
commonjs: 'react-dom/server',
commonjs2: 'react-dom/server',
amd: 'react-dom/server',
root: 'ReactDOMServer',
},
}
};
module.exports = config;