-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
312 lines (299 loc) · 11 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
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
const path = require('path');
const CopyPlugin = require('copy-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const sass = require('sass');
const ESLintPlugin = require('eslint-webpack-plugin');
const StylelintPlugin = require('stylelint-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const SentryWebpackPlugin = require('@sentry/webpack-plugin');
const { IgnorePlugin } = require('webpack');
const { GenerateSW } = require('workbox-webpack-plugin');
const projectRoot = 'samaritans';
const options = {
entry: {
'website': './static_src/javascript/main-website.js',
'donate': './static_src/javascript/donate-website.js',
'payments': './static_src/javascript/payments-website.js',
'payments_events':
'./static_src/javascript/payments-events-website.js',
'payments_monthly':
'./static_src/javascript/payments-monthly-website.js',
'loqate': './static_src/javascript/loqate.js',
'event': './static_src/javascript/event-website.js',
'chat-utils': [
'url-polyfill',
'./static_src/javascript/chat-utils.js',
],
'admin': './static_src/javascript/admin.js',
'webchat': './static_src/typescript/webchat.tsx',
},
resolve: {
extensions: ['.ts', '.tsx', '.js'],
// Keep alias in sync with tsconfig.json
alias: {
components: path.resolve(
__dirname,
'static_src/typescript/components',
),
styles: path.resolve(
__dirname,
'static_src/typescript/styles',
),
utils: path.resolve(
__dirname,
'static_src/typescript/utils',
),
assets: path.resolve(
__dirname,
'static_src/typescript/webchat-assets',
),
},
},
output: {
path: path.resolve(`./${projectRoot}/static_compiled/`),
// based on entry name, e.g. main.js
filename: 'js/[name].js', // based on entry name, e.g. main.js
},
plugins: [
new IgnorePlugin({
resourceRegExp: /^\.\/locale$/,
contextRegExp: /moment$/,
}),
new CopyPlugin({
patterns: [
{
// Copy images to be referenced directly by Django to the "images" subfolder in static files.
// Ignore CSS background images as these are handled separately below
from: 'images',
context: path.resolve(`./${projectRoot}/static_src/`),
to: path.resolve(`./${projectRoot}/static_compiled/images`),
globOptions: {
ignore: ['cssBackgrounds/*'],
},
},
{
// Copy webchat-assets
from: 'typescript/webchat-assets',
context: path.resolve(`./${projectRoot}/static_src/`),
to: path.resolve(
`./${projectRoot}/static_compiled/webchat-assets`,
),
},
],
}),
new MiniCssExtractPlugin({
filename: 'css/[name].css',
}),
new ESLintPlugin({
failOnError: false,
lintDirtyModulesOnly: true,
emitWarning: true,
}),
new StylelintPlugin({
failOnError: false,
lintDirtyModulesOnly: true,
emitWarning: true,
extensions: ['scss'],
}),
new GenerateSW({
exclude: [/.*/], // Do not precache anything
runtimeCaching: [
{
urlPattern: /static\/webchat-assets/,
handler: 'StaleWhileRevalidate',
},
],
swDest: 'webchat-sw.js',
}),
// Automatically remove all unused webpack assets on rebuild
new CleanWebpackPlugin(),
],
module: {
rules: [
{
test: /\.(js|ts|tsx)$/,
exclude: /node_modules/,
use: {
loader: 'ts-loader',
options: { compilerOptions: { noEmit: false } },
},
},
{
test: /\.(scss|css)$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
esModule: false,
},
},
{
loader: 'css-loader',
options: {
sourceMap: true,
},
},
{
loader: 'postcss-loader',
options: {
sourceMap: true,
postcssOptions: {
plugins: [
'tailwindcss',
'autoprefixer',
'postcss-custom-properties',
['cssnano', { preset: 'default' }],
],
},
},
},
{
loader: 'sass-loader',
options: {
sourceMap: true,
implementation: sass,
sassOptions: {
outputStyle: 'compressed',
},
},
},
],
},
{
// sync font files referenced by the css to the fonts directory
// only looks in the fonts folder so pngs in the images folder won't get put in the fonts folder
test: /\.(woff|woff2)$/,
include: /fonts/,
type: 'asset/resource',
generator: {
filename: 'fonts/[name][ext]',
},
},
{
test: /\.svg$/,
use: [
{
loader: '@svgr/webpack',
options: {
exportType: 'named',
},
},
],
issuer: /\.(js|jsx|ts|tsx)$/,
},
{
// Handles CSS background images in the cssBackgrounds folder
// Those less than 1024 bytes are automatically encoded in the CSS - see `_test-background-images.scss`
// the publicPath matches the path from the compiled css to the cssBackgrounds file
test: /\.(svg|jpg|png)$/,
include: path.resolve(`./${projectRoot}/static_src/images/`),
type: 'asset',
parser: {
dataUrlCondition: {
maxSize: 1024,
},
},
generator: {
filename: 'images/cssBackgrounds/[name][ext]',
},
},
],
},
// externals are loaded via base.html and not included in the webpack bundle.
externals: {
// gettext: 'gettext',
},
};
/*
If a project requires internationalisation, then include `gettext` in base.html
via the Django JSi18n helper, and uncomment it from the 'externals' object above.
*/
const webpackConfig = (environment, argv) => {
const isProduction = argv.mode === 'production';
// Runs on gitlab during the `upload_sourcemaps` job
// This uploads JS sourcemaps to Sentry for error debugging
if (
process.env.CI_JOB_STAGE === 'deploy' &&
process.env.UPLOAD_SOURCE_MAPS === 'true'
) {
options.devtool = 'source-map';
options.plugins.push(
new SentryWebpackPlugin({
include: './static_compiled',
ignoreFile: '.sentrycliignore',
ignore: ['node_modules', 'webpack.config.js'],
configFile: 'sentry.properties',
urlPrefix: '~/static',
}),
);
}
options.mode = isProduction ? 'production' : 'development';
if (!isProduction) {
// https://webpack.js.org/configuration/stats/
const stats = {
// Tells stats whether to add the build date and the build time information.
builtAt: false,
// Add chunk information (setting this to `false` allows for a less verbose output)
chunks: false,
// Add the hash of the compilation
hash: false,
// `webpack --colors` equivalent
colors: true,
// Add information about the reasons why modules are included
reasons: false,
// Add webpack version information
version: false,
// Add built modules information
modules: false,
// Show performance hint when file size exceeds `performance.maxAssetSize`
performance: false,
// Add children information
children: false,
// Add asset Information.
assets: false,
};
options.stats = stats;
// Create JS source maps in the dev mode
// See https://webpack.js.org/configuration/devtool/ for more options
options.devtool = 'inline-source-map';
// See https://webpack.js.org/configuration/dev-server/.
options.devServer = {
// Enable gzip compression for everything served.
compress: true,
static: false,
host: '0.0.0.0',
// When set to 'auto' this option always allows localhost, host, and client.webSocketURL.hostname
allowedHosts: 'auto',
port: 3000,
proxy: {
context: () => true,
target: 'http://localhost:8000',
},
client: {
// Shows a full-screen overlay in the browser when there are compiler errors.
overlay: true,
logging: 'error',
},
devMiddleware: {
index: true,
publicPath: '/static/',
writeToDisk: true,
stats,
},
setupMiddlewares: (middlewares, devServer) => {
// Add a header to the dev server to allow the webchat
// service worker to be registered from the root of the dev
// server
devServer.app.use((req, res, next) => {
if (req.url.endsWith('/webchat-sw.js')) {
res.setHeader('Service-Worker-Allowed', '/');
}
next();
});
return middlewares;
},
};
}
return options;
};
module.exports = webpackConfig;