-
Notifications
You must be signed in to change notification settings - Fork 585
/
Copy pathconfig.ts
422 lines (384 loc) · 12.6 KB
/
config.ts
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
import SnapsWebpackPlugin from '@metamask/snaps-webpack-plugin';
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
import type { Ora } from 'ora';
import { resolve } from 'path';
import TerserPlugin from 'terser-webpack-plugin';
import type { Configuration } from 'webpack';
import { DefinePlugin, ProgressPlugin, ProvidePlugin } from 'webpack';
import type { ProcessedWebpackConfig } from '../config';
import { getFunctionLoader, wasm } from './loaders';
import {
SnapsBuiltInResolver,
SnapsBundleWarningsPlugin,
SnapsStatsPlugin,
SnapsWatchPlugin,
} from './plugins';
import {
BROWSERSLIST_FILE,
getDefaultLoader,
getDevTool,
getEnvironmentVariables,
getFallbacks,
getImageSVG,
getProgressHandler,
} from './utils';
export type WebpackOptions = {
/**
* Whether to watch for changes.
*/
watch?: boolean;
/**
* Whether to evaluate the bundle. If this is set, it will override the
* `evaluate` option in the config object.
*/
evaluate?: boolean;
/**
* The spinner to use for logging.
*/
spinner?: Ora;
};
/**
* Get the default Webpack configuration. This is the configuration that will
* be used if the user doesn't provide a custom Webpack configuration. The
* configuration is based on the snap config.
*
* The default configuration includes:
*
* - `SWC` to transpile TypeScript and JavaScript files.
* - `TerserPlugin` to minify the bundle.
* - `SnapsWebpackPlugin` to validate the bundle and update the manifest.
*
* It can be customized through the `customizeWebpackConfig` function in the
* snap config, but in most cases, you shouldn't need to do that.
*
* @param config - The processed snap Webpack config.
* @param options - The Webpack options.
* @returns The default Webpack configuration.
*/
export async function getDefaultConfiguration(
config: ProcessedWebpackConfig,
options: WebpackOptions = {
evaluate: config.evaluate,
},
): Promise<Configuration> {
const spinnerText = options.spinner?.text;
const builtInResolver =
config.stats.builtIns &&
new SnapsBuiltInResolver(config.stats.builtIns, options.spinner);
return {
/**
* The target is set to `browserslist` so that Webpack will compile the
* bundle to support the browsers specified in the `.browserslistrc` file.
* This Browserslist file contains the browsers that are supported by
* MetaMask Snaps.
*
* @see https://webpack.js.org/configuration/target/
*/
target: `browserslist:${BROWSERSLIST_FILE}`,
/**
* The mode is set to `production` by default, so that Webpack will minify
* and optimize the bundle.
*
* @see https://webpack.js.org/configuration/mode/
*/
mode: 'production',
/**
* The entry point is set to the `input` value from the config object.
*
* @see https://webpack.js.org/configuration/entry-context/
*/
entry: config.input,
/**
* The devtool option controls how source maps are generated. We set it to
* the `sourceMap` value from the config object.
*
* @see https://webpack.js.org/configuration/devtool/
*/
devtool: getDevTool(config.sourceMap),
/**
* The stats option controls how much information is printed to the console
* when Webpack is running. We set it to `none` so that we can control the
* output ourselves.
*
* @see https://webpack.js.org/configuration/stats/
*/
stats: 'none',
/**
* The output options.
*
* @see https://webpack.js.org/configuration/output/
*/
output: {
/**
* This indicates whether Webpack should clear the output directory
* before building. We set it to the `clean` value from the config
* object.
*
* @see https://webpack.js.org/configuration/output/#outputclean
*/
clean: config.output.clean,
/**
* The filename of the bundle. We set it to the `filename` value from
* the config object.
*
* @see https://webpack.js.org/configuration/output/#outputfilename
*/
filename: config.output.filename,
/**
* The path to the output directory. We set it to the `path` value from
* the config object.
*
* @see https://webpack.js.org/configuration/output/#outputpath
*/
path: config.output.path,
/**
* The public path of the bundle. We set it to `/` by default, so that
* the bundle can be loaded from the root of the server.
*
* @see https://webpack.js.org/configuration/output/#outputpublicpath
*/
publicPath: '/',
/**
* The library configuration. This tells Webpack how to export the
* bundle.
*
* @see https://webpack.js.org/configuration/output/#outputlibrary
*/
library: {
/**
* This tells Webpack to export the bundle via assignment to module.exports.
* We do this to mimic CommonJS, but still allow for usage of async initialization logic
* via top level await.
*
* CommonJS is currently the only supported format for MetaMask Snaps.
*
* @see https://webpack.js.org/configuration/output/#outputlibrarytarget
*/
type: 'assign',
name: 'module.exports',
},
/**
* The chunk format. This tells Webpack how to export chunks. This is
* required because we use browserslist to target browsers, but Snaps are
* not fully compatible with browser APIs (such as `window` and
* `document`).
*
* @see https://webpack.js.org/configuration/output/#outputchunkformat
*/
chunkFormat: 'commonjs',
},
/**
* The module configuration. This is where we tell Webpack how to handle
* different types of files.
*
* @see https://webpack.js.org/configuration/module/
*/
module: {
rules: [
{
test: /\.(js|jsx|mjs|cjs|ts|tsx)$/u,
exclude: /node_modules/u,
use: await getDefaultLoader(config),
},
/**
* This allows importing modules that uses `.js` and not `.mjs` for the
* ES build.
*
* @see https://webpack.js.org/configuration/module/#resolvefullyspecified
*/
{
test: /\.m?js$/u,
resolve: {
fullySpecified: false,
},
},
/**
* This allows importing `.svg` files as a string.
*/
config.features.images && {
test: /\.svg$/u,
// `asset/source` returns the source as a UTF-8 string.
type: 'asset/source',
},
/**
* This allows importing `.png` files as a data URL.
*/
config.features.images && {
test: /\.png$/u,
type: 'asset/inline',
generator: {
dataUrl: getImageSVG.bind(null, 'image/png'),
},
},
/**
* This allows importing `.jpe?g` files as a data URL.
*/
config.features.images && {
test: /\.jpe?g$/u,
type: 'asset/inline',
generator: {
dataUrl: getImageSVG.bind(null, 'image/jpeg'),
},
},
config.experimental.wasm && {
test: /\.wasm$/u,
use: getFunctionLoader(wasm, {}),
},
],
},
/**
* The resolve configuration. This tells Webpack how to resolve imports.
* We set it to resolve `.js` and `.ts` files.
*
* @see https://webpack.js.org/configuration/resolve/
*/
resolve: {
/**
* The extensions to resolve. We set it to resolve `.(c|m)?jsx?` and
* `.tsx?` files.
*/
extensions: ['.js', '.jsx', '.mjs', '.cjs', '.ts', '.tsx'],
/**
* The fallback options. This tells Webpack how to handle imports that
* aren't resolved. By default, we set Node.js built-ins to `false`, so
* that they are ignored.
*/
fallback: getFallbacks(config.polyfills),
/**
* The plugins to use. We use the {@link SnapsBuiltInResolver} to show
* warnings about using Node.js built-ins, when no fallback is specified.
*/
plugins: [builtInResolver],
},
/**
* The plugins to use.
*
* @see https://webpack.js.org/configuration/plugins/
*/
plugins: [
/**
* The `ForkTsCheckerWebpackPlugin` is a Webpack plugin that checks
* Typescript type definitions, it does this in a separate process for speed.
*/
config.typescript.enabled &&
new ForkTsCheckerWebpackPlugin({
typescript: {
build: true,
configFile: config.typescript.configFile,
},
}),
/**
* The `SnapsWebpackPlugin` is a Webpack plugin that checks and updates
* the manifest file, and evaluates the bundle in SES. While not strictly
* required, it's highly recommended to use this plugin.
*/
new SnapsWebpackPlugin({
manifestPath: config.manifest.path,
writeManifest: config.manifest.update,
eval: !options.watch && options.evaluate,
}),
/**
* The `SnapsStatsPlugin` is a Webpack plugin that handles the stats
* output. It's used to show the stats in the terminal, in a format that
* is easy to read.
*/
new SnapsStatsPlugin({ verbose: config.stats.verbose }, options.spinner),
/**
* The `DefinePlugin` is a Webpack plugin that adds static values to the
* bundle. We use it to add the `NODE_DEBUG`, `NODE_ENV`, and `DEBUG`
* environment variables, as well as any custom environment
* variables (as `process.env`).
*/
new DefinePlugin(getEnvironmentVariables(config.environment)),
/**
* The `ProgressPlugin` is a Webpack plugin that logs the progress of
* the build. We set it to log the progress to the spinner.
*/
new ProgressPlugin({
handler: getProgressHandler(options.spinner, spinnerText),
}),
/**
* The `SnapsBundleWarningPlugin` is a Webpack plugin that shows a
* warning when the bundle is potentially incompatible with MetaMask
* Snaps.
*/
new SnapsBundleWarningsPlugin({
builtInResolver,
builtIns: Boolean(config.stats.builtIns),
buffer: config.stats.buffer,
}),
/**
* The `WatchPlugin` is a Webpack plugin that adds extra files to watch
* for changes. This is useful for rebuilding the bundle when the
* manifest file changes.
*/
options.watch &&
new SnapsWatchPlugin(
{
bundle: resolve(config.output.path, config.output.filename),
evaluate: options.evaluate,
files: [config.manifest.path],
},
options.spinner,
),
/**
* The `ProviderPlugin` is a Webpack plugin that automatically load
* modules instead of having to import or require them everywhere.
*/
(config.polyfills === true ||
(config.polyfills !== false && config.polyfills.buffer)) &&
new ProvidePlugin({
Buffer: ['buffer', 'Buffer'],
}),
].filter(Boolean),
/**
* The optimization configuration. This tells Webpack how to optimize the
* bundle. Most of the time, you won't need to change this, as the default
* options set by the `mode` option are sufficient.
*/
optimization: {
minimize: config.output.minimize,
/**
* We disable the nodeEnv optimization as we already add process.NODE_ENV
* via the DefinePlugin in the section above this.
*/
nodeEnv: false,
/**
* The minimizer to use. We set it to use the `TerserPlugin`.
*/
minimizer: [
new TerserPlugin({
parallel: true,
}),
],
},
/**
* The performance configuration. This tells Webpack how to handle
* performance hints.
*
* @see https://webpack.js.org/configuration/performance/
*/
performance: {
/**
* The hints to show. We set it to `false`, so that we don't get
* performance hints, as they are not relevant for Snaps.
*
* @see https://webpack.js.org/configuration/performance/#performancehints
*/
hints: false,
},
/**
* The infrastructure logging configuration. This tells Webpack how to
* log messages.
*
* @see https://webpack.js.org/configuration/infrastructure-logging
*/
infrastructureLogging: {
/**
* The level of logging to use. We set it to `none`, so that we can
* control the output ourselves.
*/
level: 'none',
},
};
}