-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.common.js
138 lines (124 loc) · 3.11 KB
/
webpack.common.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
'use strict';
const path = require('path');
const webpack = require('webpack');
const { styles } = require('@ckeditor/ckeditor5-dev-utils');
const customIcons = [
'align-center',
'align-justify',
'align-left',
'align-right',
'bold',
'bulletedlist',
'dropdown-arrow',
'eraser',
'image',
'italic',
'marker',
'numberedlist',
'object-center',
'object-left',
'object-right',
'pencil',
'pilcrow',
'quote',
'strikethrough',
'todolist',
'underline',
'unlink',
];
module.exports = {
resolve: {
extensions: ['.js', '.jsx'],
},
module: {
rules: [
{
// 匹配js/jsx
test: /\.jsx?$/,
// 排除node_modules
exclude: /node_modules/,
use: {
// 确定使用的loader
loader: "babel-loader",
// 参数配置
options: {
presets: [
[
// 预设polyfill
"@babel/preset-env",
{
// polyfill 只加载使用的部分
useBuiltIns: "usage",
// 使用corejs解析,模块化
corejs: "3",
},
],
// 解析react
"@babel/preset-react",
],
// 使用transform-runtime,避免全局污染,注入helper
plugins: ["@babel/plugin-transform-runtime"],
},
},
},
{
test: /\.s[ac]ss$/i,
use: [
// Creates `style` nodes from JS strings
'style-loader',
// Translates CSS into CommonJS
'css-loader',
// Compiles Sass to CSS
'sass-loader',
]
},
// ckeditor5
{
test: /ckeditor5-[^/\\]+[/\\]theme[/\\]icons[/\\][^/\\]+\.svg$/,
use: ['raw-loader']
},
{
test: /ckeditor5-[^/\\]+[/\\]theme[/\\].+\.css$/,
use: [
{
loader: 'style-loader',
options: {
injectType: 'singletonStyleTag',
attributes: {
'data-cke': true
}
}
},
'css-loader',
{
loader: 'postcss-loader',
options: {
postcssOptions: styles.getPostCssConfig({
themeImporter: {
themePath: require.resolve('@ckeditor/ckeditor5-theme-lark')
},
minify: true
})
}
}
]
}
]
},
plugins: [
// 替换 editor svg 图标
new webpack.NormalModuleReplacementPlugin(
/ckeditor5-[^/\\]+[/\\]theme[/\\]icons[/\\][^/\\]+\.svg$/,
function (result) {
const match = result.request.match(/[^/]+\/theme\/icons\/([^/]+)\.svg$/);
if (match && customIcons.includes(match[1])) {
const newSvgPath = path.resolve(__dirname, `src/editor/theme/icons/${match[1]}.svg`);
result.request = newSvgPath
result.createData.resource = newSvgPath;
}
}
),
],
// By default webpack logs warnings if the bundle is bigger than 200kb.
performance: { hints: false }
};