-
Notifications
You must be signed in to change notification settings - Fork 324
/
webpack.config.js
232 lines (222 loc) · 5.98 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
import path from 'path'
import webpack from 'webpack'
import { merge } from 'webpack-merge'
import TerserPlugin from 'terser-webpack-plugin'
import MiniCssExtractPlugin from 'mini-css-extract-plugin'
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'
/**
* common configuration shared by all targets
* @type {import('webpack').Configuration}
*/
const commonConfig = {
target: 'web',
bail: true,
output: {
path: path.resolve(__dirname, './add-on/dist/bundles/'),
publicPath: '/dist/bundles/',
filename: '[name].bundle.js'
},
cache: process.env.CI
? false // no gain on CI
: { type: 'filesystem' },
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
parallel: true
})
]
},
plugins: [
new webpack.ProgressPlugin({
percentBy: 'entries'
}),
new MiniCssExtractPlugin({
filename: '[name].css'
}),
new webpack.ProvidePlugin({
process: 'process/browser',
Buffer: ['buffer/', 'Buffer'] // ensure version from package.json is used
}),
new webpack.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: [MiniCssExtractPlugin.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: ['babel-loader']
},
{
exclude: /node_modules/,
test: /\.ts?$/,
use: [
{
loader: 'ts-loader',
options: {
transpileOnly: true
}
}
]
}
]
},
resolve: {
mainFields: ['browser', 'main'],
extensions: ['.js', '.json', '.ts'],
extensionAlias: {
'.js': ['.js', '.json', '.ts']
},
alias: {
buffer: path.resolve(__dirname, 'node_modules/buffer'), // js-ipfs uses newer impl.
url: 'iso-url',
stream: 'readable-stream' // cure general insanity
},
fallback: {
stream: 'readable-stream',
'stream/web': 'readable-stream',
worker_threads: false,
util: false,
fs: false,
path: require.resolve('path-browserify'), // legacy in src/lib/ipfs-proxy
os: require.resolve('os-browserify/browser'), // some legacy TBD
crypto: false // @hapi (Brave)
}
},
node: {
global: false // https://github.com/webpack/webpack/issues/5627#issuecomment-394309966
// TODO: remove, this is default in webpack v5: Buffer: false, // we don't want to use old and buggy version bundled node-libs
// fs: 'empty',
// tls: 'empty',
// cluster: 'empty' // expected by js-ipfs dependency: node_modules/prom-client/lib/cluster.js
},
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('webpack').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('webpack').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('webpack').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'
},
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('webpack').Configuration}
*/
const contentScriptsConfig = merge(commonConfig, {
name: 'contentScripts',
entry: {
linkifyContentScript: './add-on/src/contentScripts/linkifyDOM.js'
}
})
const config = [
bgConfig,
bgFirefoxConfig,
uiConfig,
contentScriptsConfig
]
export default config