-
Notifications
You must be signed in to change notification settings - Fork 11
/
webpack.config.ts
167 lines (147 loc) · 3.85 KB
/
webpack.config.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
import CopyWebpackPlugin from "copy-webpack-plugin";
import { GitRevisionPlugin } from "git-revision-webpack-plugin";
import HtmlWebpackPlugin from "html-webpack-plugin";
import MiniCssExtractPlugin from "mini-css-extract-plugin";
import path from "path";
import type { Configuration } from "webpack";
import { DefinePlugin } from "webpack";
import ZipWebpackPlugin from "zip-webpack-plugin";
import pkg from "./package.json";
// Small variations between browsers supporting the WebExtensions API
const variant = process.env.VARIANT as string | undefined;
// Helper functions for paths
function src(...p: string[]): string {
return path.join(__dirname, "src", ...p);
}
function dist(...p: string[]): string {
return path.join(__dirname, "dist", ...p);
}
// Initialize GitRevisionPlugin
const revision = new GitRevisionPlugin();
// Define the Webpack configuration as a TypeScript object
const config: Configuration = {
mode: (process.env.NODE_ENV as "development" | "production") ?? "production",
context: __dirname,
entry: {
background: src("background", "index.ts"),
content: src("content", "index.ts"),
options: src("options", "index.tsx"),
popup: src("popup", "index.ts"),
},
output: {
path: dist(variant!),
filename: "[name].js",
},
resolve: {
extensions: [".js", ".json", ".ts", ".tsx"],
},
module: {
rules: [
{
test: /\.tsx?$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
},
},
{
test: /\.scss$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: "css-loader",
options: { sourceMap: true },
},
{
loader: "postcss-loader",
options: { sourceMap: true },
},
{
loader: "sass-loader",
options: { sourceMap: true },
},
],
},
{
test: /\.svg$/,
exclude: /node_modules/,
use: [
{
loader: "@svgr/webpack",
options: { prettier: false, svgo: false, ref: true },
},
{
loader: "file-loader",
options: { name: "[name].[ext]" },
},
],
},
],
},
plugins: [
new HtmlWebpackPlugin({
template: src("popup", "index.html"),
filename: "popup.html",
chunks: ["popup"],
inject: true,
minify: {
collapseWhitespace: true,
removeScriptTypeAttributes: true,
},
cache: false,
}),
new HtmlWebpackPlugin({
template: src("options", "index.html"),
filename: "options.html",
chunks: ["options"],
inject: true,
minify: {
collapseWhitespace: true,
removeScriptTypeAttributes: true,
},
cache: false,
}),
new MiniCssExtractPlugin({
filename: "[name].css",
}),
new CopyWebpackPlugin({
patterns: [
{
from: src("icons", "*.png"),
to: "[name][ext]",
},
{
from: src("manifest.json"),
transform: (content) => {
const mf = JSON.parse(content.toString());
mf.name = pkg.name;
mf.version = pkg.version;
mf.description = pkg.description;
if (variant === "firefox") {
mf.browser_specific_settings = {
gecko: {
id: "jid1-ynkvezs8Qn2TJA@jetpack",
},
};
}
return JSON.stringify(mf);
},
},
],
}),
revision,
new DefinePlugin({
COMMITHASH: JSON.stringify(revision.commithash()),
}),
...(process.env.BUNDLE === "true"
? [
new ZipWebpackPlugin({
path: dist(),
filename: variant,
}),
]
: []),
],
devtool: "source-map",
};
export default config;