forked from VKCOM/VKUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.common.config.js
120 lines (111 loc) · 2.29 KB
/
webpack.common.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
const path = require('path');
const webpack = require('webpack');
const { merge } = require('webpack-merge');
const { VKUI_PACKAGE } = require('./shared');
const isProduction = process.env.NODE_ENV === 'production';
const sandbox = process.env.SANDBOX;
const styleLoader = {
loader: 'style-loader',
options: {
// singleton is faster, but does not support sourcemaps
injectType: isProduction ? 'singletonStyleTag' : 'styleTag',
attributes: {
class: 'vkui-style',
},
},
};
const rules = [
{
test: /\.[jt]sx?$/,
exclude: /node_modules/,
loader: 'swc-loader',
},
{
test: /\.(jpeg|jpg|png|woff|woff2|svg|otf)$/,
type: 'asset/resource',
generator: {
filename: 'static/[name].[hash:8].[ext]',
},
},
{
test: /\.css$/,
exclude: sandbox ? new RegExp(`${sandbox}|\\.module\\.css$`) : /\.module\.css$/,
use: [styleLoader, 'css-loader', 'postcss-loader'],
},
{
test: /\.css$/,
include: /\.module\.css$/,
use: [
styleLoader,
{
loader: 'css-loader',
options: {
modules: {
localIdentName: '[local]--[hash:base64:5]',
},
},
},
{
loader: 'postcss-loader',
},
],
},
];
if (sandbox) {
rules.push({
test: /\.css$/,
include: new RegExp(sandbox),
use: [
styleLoader,
{
loader: 'css-loader',
options: {
importLoaders: 1,
},
},
{
loader: 'postcss-loader',
},
],
});
}
const config = {
entry: {
vkui: `./${VKUI_PACKAGE.PATHS.JS_MAIN_EXPORT}`,
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
libraryTarget: 'umd',
globalObject: `typeof self !== 'undefined' ? self : this`,
},
plugins: [
new webpack.ProvidePlugin({
process: 'process/browser',
}),
],
module: {
rules,
},
resolve: {
extensions: ['.ts', '.tsx', '.js'],
},
devtool: 'source-map',
stats: {
children: false,
},
externals: [
{
'react': 'react',
'react-dom': 'react-dom',
},
/@vkontakte\/icons/i,
],
};
const devConfig = {
mode: 'development',
};
const prodConfig = {
mode: 'production',
};
module.exports = isProduction ? merge(config, prodConfig) : merge(config, devConfig);