-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathwebpack.config.mjs
202 lines (188 loc) · 5.02 KB
/
webpack.config.mjs
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: MIT-0
import path from 'node:path';
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
import CopyWebpackPlugin from 'copy-webpack-plugin';
import lodash from 'lodash';
import examplesList from './examples-list.json' with { type: 'json' };
import config from './scripts/config.js';
const banJsLoader = path.resolve('./scripts/ban-js-loader.js');
const mergeArrays = (a, b) => (Array.isArray(a) ? a.concat(b) : undefined);
const addEntryIteration = (entries, example) => {
const filePath = `./src/pages/${example.path}/index`;
entries[example.path] = ['./src/common/apply-mode.ts', './src/common/adjust-body-padding.ts', filePath];
return entries;
};
const entries = examplesList.reduce(addEntryIteration, {});
const configs = [
{
entry: entries,
output: {
path: config.outputPath,
},
},
{
entry: {
'fake-server': './src/fake-server/index.ts',
},
optimization: {
splitChunks: {
cacheGroups: {
vendor: {
test: () => false,
},
},
},
},
output: {
libraryTarget: 'window',
library: 'FakeServer',
path: path.join(config.outputPath, 'libs'),
},
resolve: {
extensions: ['.ts'],
},
module: {
rules: [
{
test: /\.tsx?/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env', '@babel/preset-typescript'],
},
},
},
],
},
plugins: [
new CopyWebpackPlugin({
patterns: [
{
from: '**/*',
to: path.join(config.outputPath, 'libs', 'ace'),
context: 'node_modules/ace-builds/src-min-noconflict/',
},
{
from: '*',
to: path.join(config.outputPath, 'resources'),
context: 'src/resources',
},
],
}),
],
},
];
const createWebpackConfig = (base, { includeDevServer }) => {
const defaults = {
mode: process.env.NODE_ENV,
stats: process.env.NODE_ENV === 'development' ? 'minimal' : undefined,
...(includeDevServer
? {
devServer: {
devMiddleware: {
publicPath: '/' + path.relative(config.outputPath, base.output.path),
},
static: {
directory: config.outputPath,
serveIndex: {
icons: true,
filter: filename => filename.endsWith('.html'),
},
},
port: config.devServerPort,
},
}
: {}),
devtool: 'source-map',
output: {
filename: '[name].js',
},
optimization: {
splitChunks: {
cacheGroups: {
vendor: {
test: /node_modules/,
chunks: 'all',
name: 'vendor',
},
},
},
},
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
module: {
rules: [
{
test: /\.jsx?/,
include: path.resolve('src/pages'),
// Fails the bundling if the demo is in JS.
// Normal JS files outside of src/pages can be still bundled but they won't be transpiled by babel.
use: [banJsLoader],
},
{
test: /\.tsx?/,
include: path.resolve('src'),
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env', '@babel/preset-react', '@babel/preset-typescript'],
},
},
},
{
test: /\.module\.scss$/,
include: path.resolve('src/pages'),
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
modules: {
localIdentName: '[path]__[local]--[hash:base64]',
},
url: false,
},
},
{
loader: 'sass-loader',
},
],
},
{
test: /\.scss$/,
include: path.resolve('src/styles'),
use: [
MiniCssExtractPlugin.loader,
{ loader: 'css-loader', options: { url: false } },
{
loader: 'sass-loader',
},
],
},
{
test: /\.css$/,
use: [MiniCssExtractPlugin.loader, 'css-loader'],
},
{
test: /\.(png|jpg)$/,
use: ['url-loader'],
},
{
test: /\.svg$/,
use: ['@svgr/webpack', 'url-loader'],
},
],
},
plugins: [
new MiniCssExtractPlugin({
// Our styles are properly scoped and they can be bundled in any order
ignoreOrder: true,
filename: '[name].css',
}),
],
};
return lodash.mergeWith(defaults, base, mergeArrays);
};
export default configs.map((config, index) => createWebpackConfig(config, { includeDevServer: index === 0 }));