forked from getAlby/lightning-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
346 lines (324 loc) · 10 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
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
const path = require("path");
const webpack = require("webpack");
const FilemanagerPlugin = require("filemanager-webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const WextManifestWebpackPlugin = require("wext-manifest-webpack-plugin");
const TerserPlugin = require("terser-webpack-plugin");
const TsconfigPathsPlugin = require("tsconfig-paths-webpack-plugin");
const ProviderInjectionPlugin = require("./build-utils/ProviderInjectionPlugin");
const BundleAnalyzerPlugin =
require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
if (!process.env.NODE_ENV) {
process.env.NODE_ENV = "development";
}
const nodeEnv = process.env.NODE_ENV;
const viewsPath = path.join(__dirname, "static", "views");
const destPath = path.join(__dirname, "dist", nodeEnv);
const targetBrowser = process.env.TARGET_BROWSER;
let network = "mainnet";
if (!process.env.ALBY_API_URL) {
process.env.ALBY_API_URL = "https://api.regtest.getalby.com";
if (!process.env.ALBY_OAUTH_AUTHORIZE_URL) {
process.env.ALBY_OAUTH_AUTHORIZE_URL =
"https://app.regtest.getalby.com/oauth";
}
network = "testnet";
}
// release build (check for explicitly set env variables)
const oauthBrowser =
process.env.TARGET_BROWSER === "firefox" ? "firefox" : "chrome";
const clientId =
process.env[`ALBY_OAUTH_CLIENT_ID_${oauthBrowser.toUpperCase()}`];
const clientSecret =
process.env[`ALBY_OAUTH_CLIENT_SECRET_${oauthBrowser.toUpperCase()}`];
if (clientId && clientSecret) {
process.env.ALBY_OAUTH_CLIENT_ID = clientId;
process.env.ALBY_OAUTH_CLIENT_SECRET = clientSecret;
console.info(
"Using oAuth credentials from environment:",
clientId,
clientSecret
);
} else {
const oauthCredentials = {
development: {
testnet: {
chrome: {
id: "CLAp8AfS3W",
secret: "KwIxF0VbGX2ZHLbbbYgE",
},
firefox: {
id: "zWdxnF04Hd",
secret: "wY5uLJJDjNWrDlB6lAj8",
},
},
mainnet: {
chrome: {
id: "Zf7u3Zlyxl",
secret: "7wtcdVi61emqwzAH9Nm6",
},
firefox: {
id: "uQkyHFBkaC",
secret: "0agh0cKkGWQSXTGRz9oy",
},
},
},
production: {
testnet: {
// only chrome is used for E2E tests
chrome: {
id: "mI5TEUKCwD",
secret: "47lxj2WNCJyVpxiy6vgq",
},
},
mainnet: {
chrome: {
id: "R7lZBSqfQt",
secret: "W4yWprd5ib6OSfq27InN",
},
firefox: {
id: "V682entasX",
secret: "GhL3g37I3NAwzavCB3A5",
},
},
},
};
// setup ALBY_OAUTH_CLIENT_ID
const selectedOAuthCredentials =
oauthCredentials[nodeEnv]?.[network]?.[oauthBrowser];
if (!selectedOAuthCredentials) {
throw new Error(
`No OAuth credentials found for current configuration: NODE_ENV=${nodeEnv} network=${network} oauthBrowser=${oauthBrowser}`
);
}
console.info("Using OAuth credentials for", nodeEnv, oauthBrowser, network);
process.env.ALBY_OAUTH_CLIENT_ID = selectedOAuthCredentials.id;
process.env.ALBY_OAUTH_CLIENT_SECRET = selectedOAuthCredentials.secret;
}
// default value is set in the code where it is used
if (!process.env.ALBY_OAUTH_AUTHORIZE_URL) {
process.env.ALBY_OAUTH_AUTHORIZE_URL = ""; // env variables are passed as string. empty strings are still falsy
}
// default value is set in the code where it is used
if (!process.env.BLINK_GALOY_URL) {
process.env.BLINK_GALOY_URL = ""; // env variables are passed as string. empty strings are still falsy
}
// default value is set in the code where it is used
if (!process.env.BITCOIN_JUNGLE_GALOY_URL) {
process.env.BITCOIN_JUNGLE_GALOY_URL = ""; // env variables are passed as string. empty strings are still falsy
}
// default value is set in the code where it is used
if (!process.env.HMAC_VERIFY_HEADER_KEY) {
process.env.HMAC_VERIFY_HEADER_KEY = ""; // env variables are passed as string. empty strings are still falsy
}
if (!process.env.VERSION) {
process.env.VERSION = require("./package.json").version;
}
const getExtensionFileType = (browser) => {
if (browser === "opera") {
return "crx";
}
if (browser === "firefox") {
return "xpi";
}
return "zip";
};
var options = {
stats: {
all: false,
builtAt: true,
errors: true,
hash: true,
},
mode: nodeEnv,
entry: {
manifest: "./src/manifest.json",
background: "./src/extension/background-script/index.ts",
contentScriptWebLN: "./src/extension/content-script/webln.js",
contentScriptAlby: "./src/extension/content-script/alby.js",
contentScriptLiquid: "./src/extension/content-script/liquid.js",
contentScriptNostr: "./src/extension/content-script/nostr.js",
contentScriptWebBTC: "./src/extension/content-script/webbtc.js",
contentScriptOnStart: "./src/extension/content-script/onstart.ts",
inpageScript: "./src/extension/inpage-script/index.js",
popup: "./src/app/router/Popup/index.tsx",
prompt: "./src/app/router/Prompt/index.tsx",
options: "./src/app/router/Options/index.tsx",
welcome: "./src/app/router/Welcome/index.tsx",
},
output: {
path: path.join(destPath, targetBrowser),
filename: "js/[name].bundle.js",
},
resolve: {
extensions: [".ts", ".tsx", ".js", ".jsx", ".json"],
alias: {
"webextension-polyfill": "webextension-polyfill",
Buffer: "buffer",
process: "process/browser",
assert: "assert",
stream: "stream-browserify",
},
plugins: [new TsconfigPathsPlugin()],
},
module: {
rules: [
{
type: "javascript/auto", // prevent webpack handling json with its own loaders,
test: /manifest\.json$/,
use: {
loader: "wext-manifest-loader",
options: {
usePackageJSONVersion: true, // set to false to not use package.json version for manifest
},
},
exclude: /node_modules/,
},
{
test: /\.(js|ts)x?$/,
exclude: /node_modules/,
use: {
loader: "swc-loader",
},
},
{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader, // It creates a CSS file per JS file which contains CSS
},
{ loader: "css-loader", options: { sourceMap: true } },
{ loader: "postcss-loader", options: { sourceMap: true } },
],
},
{
test: /\.(png|svg|jpg|jpeg|gif)$/i,
type: "asset/resource",
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/i,
type: "asset/resource",
},
],
},
plugins: [
new ProviderInjectionPlugin(),
new webpack.ProvidePlugin({
Buffer: ["buffer", "Buffer"],
process: ["process"],
}),
// Plugin to not generate js bundle for manifest entry
new WextManifestWebpackPlugin(),
// Generate sourcemaps
// TODO: reenable
// new webpack.SourceMapDevToolPlugin({ filename: false }),
// environmental variables
new webpack.EnvironmentPlugin([
"BLINK_GALOY_URL",
"BITCOIN_JUNGLE_GALOY_URL",
"NODE_ENV",
"TARGET_BROWSER",
"VERSION",
"HMAC_VERIFY_HEADER_KEY",
"ALBY_OAUTH_CLIENT_ID",
"ALBY_OAUTH_CLIENT_SECRET",
"ALBY_OAUTH_AUTHORIZE_URL",
"ALBY_API_URL",
]),
// delete previous build files
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: [
path.join(process.cwd(), "dist", nodeEnv, targetBrowser),
path.join(
process.cwd(),
"dist",
nodeEnv,
`${targetBrowser}.${getExtensionFileType(targetBrowser)}`
),
],
cleanStaleWebpackAssets: false,
verbose: true,
}),
new HtmlWebpackPlugin({
template: path.join(viewsPath, "popup.html"),
inject: "body",
chunks: ["popup"],
hash: true,
filename: "popup.html",
}),
new HtmlWebpackPlugin({
template: path.join(viewsPath, "options.html"),
inject: "body",
chunks: ["options"],
hash: true,
filename: "options.html",
}),
new HtmlWebpackPlugin({
template: path.join(viewsPath, "prompt.html"),
inject: "body",
chunks: ["prompt"],
hash: true,
filename: "prompt.html",
}),
new HtmlWebpackPlugin({
template: path.join(viewsPath, "welcome.html"),
inject: "body",
chunks: ["welcome"],
hash: true,
filename: "welcome.html",
}),
// write css file(s) to build folder
new MiniCssExtractPlugin({ filename: "[name].css" }), // No css subfolder has been used as this breaks path's to url's such as fonts.
// copy static assets
new CopyWebpackPlugin({
patterns: [{ from: "static/assets", to: "assets" }],
}),
new BundleAnalyzerPlugin({
generateStatsFile: nodeEnv !== "development" ? true : false,
analyzerMode: nodeEnv !== "development" ? "static" : "disabled",
reportFilename: "../bundle-report.html",
statsFilename: "../bundle-stats.json",
openAnalyzer: nodeEnv !== "development",
}),
],
};
if (nodeEnv === "development") {
options.devtool = "inline-source-map";
} else {
options.optimization = {
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: {
ecma: 6,
mangle: {
reserved: ["Buffer", "buffer"],
},
},
}),
new CssMinimizerPlugin(),
new FilemanagerPlugin({
events: {
onEnd: {
archive: [
{
format: "zip",
source: path.join(destPath, targetBrowser),
destination: `${path.join(
destPath,
targetBrowser
)}.${getExtensionFileType(targetBrowser)}`,
options: { zlib: { level: 6 } },
},
],
},
},
}),
],
};
}
module.exports = options;