forked from ipfs/ipfs-companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
199 lines (193 loc) · 5.79 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
const path = require('path')
const webpack = require('webpack')
const { merge } = require('webpack-merge')
const TerserPlugin = require('terser-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
// common configuration shared by all targets
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 require('webpack-bundle-analyzer').BundleAnalyzerPlugin(),
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: 'window', // https://github.com/webpack/webpack/issues/5627#issuecomment-394309966
'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,
loader: 'file-loader',
options: {
name: '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']
}
]
},
resolve: {
/* mainFields: ['browser', 'main'], */
extensions: ['.js', '.json'],
alias: {
buffer: path.resolve(__dirname, 'node_modules/buffer'), // js-ipfs uses newer impl.
url: 'iso-url',
stream: 'readable-stream' // cure general insanity
},
fallback: {
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
}
}
// background page bundle (with heavy dependencies)
const bgConfig = merge(commonConfig, {
name: 'background',
entry: {
backgroundPage: './add-on/src/background/background.js'
},
optimization: {
splitChunks: {
chunks: 'all',
cacheGroups: {
defaultVendors: false,
default: false,
ipfs: {
name: 'ipfs',
priority: 10,
enforce: true,
// Include js-ipfs and js-ipfs-http-client
test: /\/node_modules\/(ipfs|ipfs-http-client|ipfs-postmsg-proxy|peer-info|bcrypto|ipfsx|libp2p*)\//
}
}
}
}
})
// user interface pages with shared common libraries
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',
// TODO: remove or fix (window.ipfs) proxyAclManagerPage: './add-on/src/pages/proxy-acl/index.js',
// TODO: remove or fix (window.ipfs) proxyAclDialog: './add-on/src/pages/proxy-access-dialog/index.js',
welcomePage: './add-on/src/landing-pages/welcome/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
const contentScriptsConfig = merge(commonConfig, {
name: 'contentScripts',
entry: {
// TODO: remove or fix (window.ipfs) ipfsProxyContentScriptPayload: './add-on/src/contentScripts/ipfs-proxy/page.js',
linkifyContentScript: './add-on/src/contentScripts/linkifyDOM.js'
}
})
// special content script that injects window.ipfs into REAL window object
// (by default scripts executed via tabs.executeScript get a sandbox version)
/* TODO: remove or fix - depending what we do with window.ipfs
const proxyContentScriptConfig = merge(commonConfig, {
name: 'proxyContentScript',
dependencies: ['contentScripts'],
entry: {
// below is just a loader for ipfsProxyContentScriptPayload
ipfsProxyContentScript: './add-on/src/contentScripts/ipfs-proxy/content.js'
},
module: {
rules: [
{
exclude: /node_modules/,
test: /\.js$/,
use: ['babel-loader']
},
{
// payload is already in bundled form, so we load raw code as-is
test: /ipfsProxyContentScriptPayload\.bundle\.js$/,
loader: 'raw-loader'
}
]
}
})
*/
module.exports = [
bgConfig,
uiConfig,
contentScriptsConfig
// TODO: remove or fix (window.ipfs) proxyContentScriptConfig
]