This repository has been archived by the owner on Jun 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 300
/
Copy pathrenderer.webpack.config.js
236 lines (227 loc) · 5.06 KB
/
renderer.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
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const HardSourceWebpackPlugin = require("hard-source-webpack-plugin");
const babelPlugins = require("./babel.plugins");
const UnusedWebpackPlugin = require("unused-webpack-plugin");
const Dotenv = require("dotenv-webpack");
const packagesToTranspile = [
/@polkadot[\\/]api/,
/@polkadot[\\/]api-derive/,
/@polkadot[\\/]keyring/,
/@polkadot[\\/]networks/,
/@polkadot[\\/]rpc-augment/,
/@polkadot[\\/]rpc-core/,
/@polkadot[\\/]rpc-provider/,
/@polkadot[\\/]types/,
/@polkadot[\\/]types-known/,
/@polkadot[\\/]ui-shared/,
/@polkadot[\\/]util/,
/@polkadot[\\/]util-crypto/,
/@polkadot[\\/]x-bigint/,
/@polkadot[\\/]x-fetch/,
/@polkadot[\\/]x-global/,
/@polkadot[\\/]x-randomvalues/,
/@polkadot[\\/]x-textdecoder/,
/@polkadot[\\/]x-textencoder/,
/@polkadot[\\/]x-ws/,
/@polkadot[\\/]react-identicon/,
];
const exceptionToTranspile = path_ruled => {
// DO transpile these packages
if (packagesToTranspile.some(pkg => path_ruled.match(pkg))) {
return false;
}
// Ignore all other modules that are in node_modules
if (path_ruled.match(/node_modules/)) {
return true;
} else return false;
};
const includeToTranspile = path_ruled => {
// DO transpile these packages
if (packagesToTranspile.some(pkg => path_ruled.match(pkg))) {
return true;
}
return false;
};
const babelConfig = {
presets: [
[
"@babel/preset-env",
{
targets: {
electron: "7.1.9",
},
},
],
"@babel/preset-react",
"@babel/preset-flow",
],
plugins: [
...babelPlugins,
"react-hot-loader/babel",
[
"babel-plugin-styled-components",
{
ssr: false,
},
],
],
};
const babelTsConfig = {
presets: [
"@babel/preset-typescript",
[
"@babel/preset-env",
{
targets: {
electron: "7.1.9",
},
},
],
"@babel/preset-react",
"@babel/preset-flow",
],
plugins: [
...babelPlugins,
"react-hot-loader/babel",
[
"babel-plugin-styled-components",
{
ssr: false,
},
],
],
};
function getDotenvPathFromEnv() {
if (process.env.TESTING) {
return ".env.testing";
} else if (process.env.STAGING) {
return ".env.staging";
} else if (process.env.NODE_ENV === "production") {
return ".env.production";
}
return ".env";
}
module.exports = {
target: "electron-renderer",
entry: ["./src/renderer/index.js"],
output: {
path: path.resolve(__dirname, ".webpack"),
filename: "renderer.bundle.js",
},
optimization: {
minimize: false,
},
plugins: [
new Dotenv({
path: getDotenvPathFromEnv(),
}),
new HtmlWebpackPlugin({
template: "./src/renderer/index.html",
filename: "index.html",
title: "Ledger Live",
}),
new HardSourceWebpackPlugin({
cacheDirectory: path.resolve(__dirname, ".webpack", "cacheRenderer"),
}),
new UnusedWebpackPlugin({
directories: [path.join(__dirname, "src/renderer")],
exclude: [
"*.test.js",
"*.html",
"bridge/proxy-commands.js",
"fonts/inter/Inter-Bold.woff2",
"types.js",
],
}),
],
module: {
rules: [
{
test: /\.(ts)x?$/,
exclude: exceptionToTranspile,
loader: "babel-loader",
options: babelTsConfig,
},
{
test: /\.js$/i,
loader: "babel-loader",
exclude: exceptionToTranspile,
options: babelConfig,
},
{
test: /\.js$/i,
loader: require.resolve("@open-wc/webpack-import-meta-loader"),
include: includeToTranspile,
},
{
test: /\.css$/i,
use: ["style-loader", "css-loader"],
},
process.env.V3
? {
test: /\.woff2/,
use: [
{
loader: "file-loader",
options: {
name: "[name].[ext]",
outputPath: "assets/fonts/",
},
},
],
}
: {
test: /\.(woff|woff2|eot|ttf|otf)$/i,
use: ["file-loader"],
},
{
test: /\.(png|jpe?g|gif|svg)$/i,
use: {
loader: "url-loader",
options: {
limit: 8192,
fallback: require.resolve("file-loader"),
},
},
},
{
type: "javascript/auto",
test: /\.mjs$/,
use: [],
},
],
},
resolve: {
alias: {
"~": path.resolve(__dirname, "src"),
},
...(process.env.V3
? {
extensions: [
".v3.tsx",
".v3.ts",
".v3.jsx",
".v3.js",
".tsx",
".ts",
".jsx",
".js",
"...",
],
}
: {
extensions: [
".jsx",
".js",
".v3.tsx",
".v3.ts",
".v3.jsx",
".v3.js",
".tsx",
".ts",
"...",
],
}),
},
};