-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathrspack.config.js
More file actions
224 lines (213 loc) · 5.74 KB
/
Copy pathrspack.config.js
File metadata and controls
224 lines (213 loc) · 5.74 KB
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
import path from 'path'
import { rspack } from '@rspack/core'
import { merge } from 'webpack-merge'
import { fileURLToPath } from 'url'
import { createRequire } from 'module'
const require = createRequire(import.meta.url)
const __dirname = path.dirname(fileURLToPath(import.meta.url))
const devBuild = process.env.NODE_ENV === 'development'
// SWC handles both the JS and TS rules; targets match the manifests' minimum
// supported browsers (minimum_chrome_version and gecko strict_min_version)
const swcLoader = (syntax) => ({
loader: 'builtin:swc-loader',
options: {
jsc: { parser: { syntax } },
env: { targets: { chrome: '111', firefox: '111' } }
}
})
/**
* common configuration shared by all targets
* @type {import('@rspack/core').Configuration}
*/
const commonConfig = {
target: 'web',
bail: true,
output: {
path: path.resolve(__dirname, './add-on/dist/bundles/'),
publicPath: '/dist/bundles/',
filename: '[name].bundle.js',
environment: {
// Don't use node: protocol for core modules in browser builds
nodePrefixForCoreModules: false
}
},
// rspack's in-memory cache speeds up watch rebuilds; off in CI (single cold run)
cache: !process.env.CI,
// keep css-loader handling .css (it resolves the ~ @imports); rspack's native CSS is off
experiments: {
css: false
},
optimization: {
minimize: true,
minimizer: [
new rspack.SwcJsMinimizerRspackPlugin()
]
},
plugins: [
new rspack.ProgressPlugin({
percentBy: 'entries'
}),
new rspack.CssExtractRspackPlugin({
filename: '[name].css'
}),
new rspack.ProvidePlugin({
process: 'process/browser.js'
}),
new rspack.DefinePlugin({
global: 'globalThis', // https://github.com/webpack/webpack/issues/5627#issuecomment-394309966
'process.emitWarning': (message, type) => {}, // console.warn(`${type}${type ? ': ' : ''}${message}`),
'process.env': {
// NODE_ENV: '"production"',
IPFS_MONITORING: false,
DEBUG: false // controls verbosity of Hapi HTTP server in js-ipfs
}
})
],
module: {
rules: [
{
test: /\.css$/,
use: [rspack.CssExtractRspackPlugin.loader, 'css-loader']
},
{
test: /\.(png|jpe?g|gif|svg|eot|otf|ttf|woff|woff2)$/i,
type: 'asset/resource',
generator: {
filename: 'assets/[name][ext]'
}
},
{
// Ignore legacy fonts (both Firefox and Chromium talk WOFF2)
test: /\.(otf|eot|ttf|woff)(\?.*$|$)/,
use: ['raw-loader', 'ignore-loader']
},
{
exclude: /node_modules/,
test: /\.js$/,
use: [swcLoader('ecmascript')]
},
{
exclude: /node_modules/,
test: /\.ts$/,
use: [swcLoader('typescript')]
}
]
},
resolve: {
mainFields: ['browser', 'main'],
extensions: ['.js', '.json', '.ts'],
extensionAlias: {
'.js': ['.js', '.json', '.ts']
},
fallback: {
worker_threads: false,
fs: false,
process: require.resolve('process/browser.js')
}
},
node: {
global: false // https://github.com/webpack/webpack/issues/5627#issuecomment-394309966
},
watchOptions: {
ignored: ['add-on/dist/**/*', 'node_modules']
},
performance: {
maxEntrypointSize: Infinity,
maxAssetSize: 4194304 // https://github.com/mozilla/addons-linter/pull/892
}
}
if (devBuild) {
commonConfig.devtool = 'source-map'
}
/**
* background page bundle (with heavy dependencies)
* @type {import('@rspack/core').Configuration}
*/
const bgConfig = merge(commonConfig, {
name: 'background',
target: 'webworker',
entry: {
backgroundPage: './add-on/src/background/background.js'
},
output: {
globalObject: 'globalThis'
},
optimization: {
splitChunks: {
chunks: 'all',
cacheGroups: {
defaultVendors: false,
default: false,
ipfs: {
name: 'ipfs',
priority: 10,
enforce: true,
// Include js-kubo-rpc-client
test: /\/node_modules\/kubo-rpc-client\//
}
}
}
}
})
/**
* background page bundle (with heavy dependencies)
* @type {import('@rspack/core').Configuration}
*/
const bgFirefoxConfig = merge(commonConfig, {
name: 'background-firefox',
entry: {
backgroundPage: './add-on/src/background/background.js'
},
output: {
filename: '[name].firefox.bundle.js'
}
})
/**
* user interface pages with shared common libraries
* @type {import('@rspack/core').Configuration}
*/
const uiConfig = merge(commonConfig, {
name: 'ui',
entry: {
browserAction: './add-on/src/popup/browser-action/index.js',
importPage: './add-on/src/popup/quick-import.js',
optionsPage: './add-on/src/options/options.js',
recoveryPage: './add-on/src/recovery/recovery.js',
welcomePage: './add-on/src/landing-pages/welcome/index.js',
requestPermissionsPage: './add-on/src/landing-pages/permissions/request.js',
invalidAddressPage: './add-on/src/landing-pages/invalid-address/index.js'
},
optimization: {
splitChunks: {
chunks: 'all',
cacheGroups: {
defaultVendors: false,
default: false,
uiCommons: {
name: 'uiCommons',
minChunks: 2,
enforce: true,
// Exclude backend dependencies (known to slow down UI due to size)
chunks: chunk => chunk.name !== 'backgroundPage'
}
}
}
}
})
/**
* content scripts injected into tabs
* @type {import('@rspack/core').Configuration}
*/
const contentScriptsConfig = merge(commonConfig, {
name: 'contentScripts',
entry: {
linkifyContentScript: './add-on/src/contentScripts/linkifyDOM.js'
}
})
const config = [
bgConfig,
bgFirefoxConfig,
uiConfig,
contentScriptsConfig
]
export default config