forked from scriptscat/scriptcat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrspack.config.ts
More file actions
227 lines (223 loc) · 6.37 KB
/
rspack.config.ts
File metadata and controls
227 lines (223 loc) · 6.37 KB
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
import * as path from "path";
import { defineConfig } from "@rspack/cli";
import { rspack } from "@rspack/core";
import { readFileSync } from "fs";
import NodePolyfillPlugin from "node-polyfill-webpack-plugin";
const pkg = JSON.parse(readFileSync("./package.json") as unknown as string);
const version = pkg.version;
const dirname = path.resolve();
const isDev = process.env.NODE_ENV === "development";
const isBeta = version.includes("-");
// Target browsers, see: https://github.com/browserslist/browserslist
const targets = ["chrome >= 87", "edge >= 88", "firefox >= 78", "safari >= 14"];
const src = `${dirname}/src`;
const dist = `${dirname}/dist`;
const assets = `${src}/assets`;
export default defineConfig({
...(isDev
? {
watch: true,
mode: "development",
devtool: process.env.NO_MAP === "true" ? false : "inline-source-map",
}
: {
mode: "production",
devtool: false,
}),
context: dirname,
entry: {
service_worker: `${src}/service_worker.ts`,
offscreen: `${src}/offscreen.ts`,
sandbox: `${src}/sandbox.ts`,
content: `${src}/content.ts`,
inject: `${src}/inject.ts`,
popup: `${src}/pages/popup/main.tsx`,
install: `${src}/pages/install/main.tsx`,
confirm: `${src}/pages/confirm/main.tsx`,
import: `${src}/pages/import/main.tsx`,
options: `${src}/pages/options/main.tsx`,
"editor.worker": "monaco-editor/esm/vs/editor/editor.worker.js",
"ts.worker": "monaco-editor/esm/vs/language/typescript/ts.worker.js",
"linter.worker": `${src}/linter.worker.ts`,
},
output: {
path: `${dist}/ext/src`,
filename: "[name].js",
clean: true,
},
resolve: {
extensions: ["...", ".ts", ".tsx", ".jsx"],
alias: {
"@App": path.resolve(dirname, "src/"),
"@Packages": path.resolve(dirname, "packages/"),
// 改写eslint-plugin-userscripts以适配脚本猫,打包时重定义模块路径
"../data/compat-grant": path.resolve(dirname, "packages/eslint/compat-grant"),
"../data/compat-headers": path.resolve(dirname, "packages/eslint/compat-headers"),
},
fallback: {
child_process: false,
},
},
module: {
rules: [
{
test: /\.css$/,
use: [
{
loader: "postcss-loader",
options: {
postcssOptions: {
plugins: {
autoprefixer: {},
},
},
},
},
],
type: "css",
},
{
test: /\.(svg|png)$/,
type: "asset",
},
{
test: /\.(jsx?|tsx?)$/,
use: [
{
loader: "builtin:swc-loader",
options: {
jsc: {
parser: {
syntax: "typescript",
tsx: true,
decorators: true,
},
transform: {
react: {
runtime: "automatic",
development: isDev,
},
},
},
env: { targets },
},
},
],
},
{
type: "asset/source",
test: /\.d\.ts$/,
exclude: /node_modules/,
},
{
type: "asset/source",
test: /\.tpl$/,
exclude: /node_modules/,
},
],
},
plugins: [
new rspack.CopyRspackPlugin({
patterns: [
{
from: `${src}/manifest.json`,
to: `${dist}/ext`,
// 将manifest.json内版本号替换为package.json中版本号
transform(content: Buffer) {
const manifest = JSON.parse(content.toString());
if (isDev || isBeta) {
manifest.name = "__MSG_scriptcat_beta__";
// manifest.content_security_policy = "script-src 'self' https://cdn.crowdin.com; object-src 'self'";
}
return JSON.stringify(manifest);
},
},
{
from: `${assets}/logo${isDev || isBeta ? "-beta" : ""}.png`,
to: `${dist}/ext/assets/logo.png`,
},
{ from: `${assets}/logo`, to: `${dist}/ext/assets/logo` },
{
from: `${assets}/_locales`,
to: `${dist}/ext/_locales`,
},
],
}),
new rspack.HtmlRspackPlugin({
filename: `${dist}/ext/src/install.html`,
template: `${src}/pages/template.html`,
inject: "head",
title: "Install - ScriptCat",
minify: true,
chunks: ["install"],
}),
new rspack.HtmlRspackPlugin({
filename: `${dist}/ext/src/confirm.html`,
template: `${src}/pages/template.html`,
inject: "head",
title: "Confirm - ScriptCat",
minify: true,
chunks: ["confirm"],
}),
new rspack.HtmlRspackPlugin({
filename: `${dist}/ext/src/import.html`,
template: `${src}/pages/template.html`,
inject: "head",
title: "Import - ScriptCat",
minify: true,
chunks: ["import"],
}),
new rspack.HtmlRspackPlugin({
filename: `${dist}/ext/src/options.html`,
template: `${src}/pages/options.html`,
inject: "head",
title: "Home - ScriptCat",
minify: true,
chunks: ["options"],
}),
new rspack.HtmlRspackPlugin({
filename: `${dist}/ext/src/popup.html`,
template: `${src}/pages/popup.html`,
inject: "head",
title: "Home - ScriptCat",
minify: true,
chunks: ["popup"],
}),
new rspack.HtmlRspackPlugin({
filename: `${dist}/ext/src/offscreen.html`,
template: `${src}/pages/offscreen.html`,
inject: "head",
minify: true,
chunks: ["offscreen"],
}),
new rspack.HtmlRspackPlugin({
filename: `${dist}/ext/src/sandbox.html`,
template: `${src}/pages/sandbox.html`,
inject: "head",
minify: true,
chunks: ["sandbox"],
}),
new NodePolyfillPlugin(),
].filter(Boolean),
optimization: {
minimizer: [
new rspack.SwcJsMinimizerRspackPlugin({}),
new rspack.LightningCssMinimizerRspackPlugin({
minimizerOptions: { targets },
}),
],
splitChunks: {
chunks: (chunk) => {
// 排除这些文件,不进行分离
return !["editor.worker", "ts.worker", "linter.worker", "service_worker", "content", "inject"].includes(
chunk.name || ""
);
},
minSize: 307200,
maxSize: 4194304,
},
},
experiments: {
css: true,
},
});