-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathwebpack.config.utils.ts
310 lines (286 loc) · 7.49 KB
/
webpack.config.utils.ts
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
import { ProgressPlugin, DefinePlugin } from 'webpack';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import CopyWebpackPlugin from 'copy-webpack-plugin';
import ZipPlugin from 'zip-webpack-plugin';
import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer';
import path from 'path';
import { CleanWebpackPlugin } from 'clean-webpack-plugin';
import ESLintPlugin from 'eslint-webpack-plugin';
import WebpackExtensionManifestPlugin from 'webpack-extension-manifest-plugin';
const ExtReloader = require('webpack-ext-reloader-mv3');
const baseManifestChrome = require('./src/baseManifest_chrome.json');
const baseManifestFirefox = require('./src/baseManifest_firefox.json');
const baseManifestOpera = require('./src/baseManifest_opera.json');
const baseManifestEdge = require('./src/baseManifest_edge.json');
const baseManifest = {
chrome: baseManifestChrome,
firefox: baseManifestFirefox,
opera: baseManifestOpera,
edge: baseManifestEdge,
};
const dotenv = require('dotenv').config({ path: __dirname + '/.env' });
interface EnvironmentConfig {
NODE_ENV: string;
OUTPUT_DIR: string;
TARGET: string;
}
export const Directories = {
DEV_DIR: 'dev',
DIST_DIR: 'dist',
TEMP_DIR: 'temp',
SRC_DIR: 'src',
};
/**
* Environment Config
*
*/
const EnvConfig: EnvironmentConfig = {
OUTPUT_DIR:
process.env.NODE_ENV === 'production'
? Directories.TEMP_DIR
: process.env.NODE_ENV === 'upload'
? Directories.DIST_DIR
: Directories.DEV_DIR,
...(process.env.NODE_ENV ? { NODE_ENV: process.env.NODE_ENV } : { NODE_ENV: 'development' }),
...(process.env.TARGET ? { TARGET: process.env.TARGET } : { TARGET: 'chrome' }),
};
/**
* Get HTML Plugins
*
* @param browserDir
* @param outputDir
* @param sourceDir
* @returns
*/
export const getHTMLPlugins = (
browserDir: string,
outputDir = Directories.DEV_DIR,
sourceDir = Directories.SRC_DIR,
) => [
new HtmlWebpackPlugin({
title: 'Popup',
filename: path.resolve(__dirname, `${outputDir}/${browserDir}/popup/index.html`),
template: path.resolve(__dirname, `${sourceDir}/popup/index.html`),
chunks: ['popup'],
}),
new HtmlWebpackPlugin({
title: 'Options',
filename: path.resolve(__dirname, `${outputDir}/${browserDir}/options/index.html`),
template: path.resolve(__dirname, `${sourceDir}/options/index.html`),
chunks: ['options'],
}),
];
/**
* Get DefinePlugins
*
* @param config
* @returns
*/
export const getDefinePlugins = (config = {}) => [
new DefinePlugin({
'process.env': JSON.stringify({ ...config, ...(dotenv.parsed ?? {}) }),
}),
];
/**
* Get Output Configurations
*
* @param browserDir
* @param outputDir
* @returns
*/
export const getOutput = (browserDir: string, outputDir = Directories.DEV_DIR) => {
return {
path: path.resolve(process.cwd(), `${outputDir}/${browserDir}`),
filename: '[name]/[name].js',
};
};
/**
* Get Entry Points
*
* @param sourceDir
* @returns
*/
export const getEntry = (sourceDir = Directories.SRC_DIR) => {
return {
popup: [path.resolve(__dirname, `${sourceDir}/popup/index.tsx`)],
options: [path.resolve(__dirname, `${sourceDir}/options/options.tsx`)],
content: [path.resolve(__dirname, `${sourceDir}/content/index.tsx`)],
background: [path.resolve(__dirname, `${sourceDir}/background/index.ts`)],
};
};
/**
* Get CopyPlugins
*
* @param browserDir
* @param outputDir
* @param sourceDir
* @returns
*/
export const getCopyPlugins = (
browserDir: string,
outputDir = Directories.DEV_DIR,
sourceDir = Directories.SRC_DIR,
) => {
return [
new CopyWebpackPlugin({
patterns: [
{
from: path.resolve(__dirname, `${sourceDir}/options/options.css`),
to: path.resolve(__dirname, `${outputDir}/${browserDir}/options`),
},
{
from: path.resolve(__dirname, `${sourceDir}/assets/options/1.png`),
to: path.resolve(__dirname, `${outputDir}/${browserDir}/options`),
},
{
from: path.resolve(__dirname, `${sourceDir}/assets/options/2.png`),
to: path.resolve(__dirname, `${outputDir}/${browserDir}/options`),
},
{
from: path.resolve(__dirname, `${sourceDir}/assets/options/3.png`),
to: path.resolve(__dirname, `${outputDir}/${browserDir}/options`),
},
{
from: path.resolve(__dirname, `${sourceDir}/content/content.css`),
to: path.resolve(__dirname, `${outputDir}/${browserDir}/content`),
},
{
from: path.resolve(__dirname, `${sourceDir}/assets`),
to: path.resolve(__dirname, `${outputDir}/${browserDir}/assets`),
},
{
from: path.resolve(__dirname, `${sourceDir}/_locales`),
to: path.resolve(__dirname, `${outputDir}/${browserDir}/_locales`),
},
],
}),
];
};
/**
* Get ZipPlugins
*
* @param browserDir
* @param outputDir
* @returns
*/
export const getZipPlugins = (browserDir: string, outputDir = Directories.DIST_DIR) => {
return [
new ZipPlugin({
path: path.resolve(process.cwd(), `${outputDir}/${browserDir}`),
filename: browserDir,
extension: 'zip',
fileOptions: {
mtime: new Date(),
mode: 0o100664,
compress: true,
forceZip64Format: false,
},
zipOptions: {
forceZip64Format: false,
},
}),
];
};
/**
* Get Analyzer Plugins
*
* @returns
*/
export const getAnalyzerPlugins = () => {
return [
new BundleAnalyzerPlugin({
analyzerMode: 'server',
}),
];
};
/**
* Get CleanWebpackPlugins
*
* @param dirs
* @returns
*/
export const getCleanWebpackPlugins = (...dirs: string[]) => {
return [
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: [...dirs?.map((dir) => path.join(process.cwd(), `${dir}`) ?? [])],
cleanStaleWebpackAssets: false,
verbose: true,
}),
];
};
/**
* Get Resolves
*
* @returns
*/
export const getResolves = () => {
return {
alias: {
utils: path.resolve(__dirname, './src/utils/'),
popup: path.resolve(__dirname, './src/popup/'),
background: path.resolve(__dirname, './src/background/'),
options: path.resolve(__dirname, './src/options/'),
content: path.resolve(__dirname, './src/content/'),
assets: path.resolve(__dirname, './src/assets/'),
components: path.resolve(__dirname, './src/components/'),
types: path.resolve(__dirname, './src/types/'),
hooks: path.resolve(__dirname, './src/hooks/'),
'@redux': path.resolve(__dirname, './src/@redux/'),
},
extensions: ['.js', '.jsx', '.ts', '.tsx'],
};
};
/**
* Get Extension Manifest Plugins
*
* @returns
*/
export const getExtensionManifestPlugins = () => {
return [
new WebpackExtensionManifestPlugin({
config: { base: (baseManifest as any)[EnvConfig.TARGET] },
}),
];
};
export const eslintOptions = {
fix: true,
};
/**
* Get Eslint Plugins
*
* @returns
*/
export const getEslintPlugins = (options = eslintOptions) => {
return [new ESLintPlugin(options)];
};
/**
* Get Progress Plugins
*
* @returns
*/
export const getProgressPlugins = () => {
return [new ProgressPlugin()];
};
/**
* Environment Configuration Variables
*
*/
export const config = EnvConfig;
/**
* Get Extension Reloader Plugin
*
* @returns
*/
export const getExtensionReloaderPlugins = () => {
return [
new ExtReloader({
port: 9090,
reloadPage: true,
entries: {
contentScript: ['content'],
background: 'background',
extensionPage: ['popup', 'options'],
},
}),
];
};