@lark-apaas/fullstack-rspack-preset 1.0.11 → 1.0.12-alpha.patch.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/overlay/index.js
CHANGED
|
@@ -226,12 +226,22 @@ function render() {
|
|
|
226
226
|
});
|
|
227
227
|
if (currentCompileErrorMessage) {
|
|
228
228
|
currentMode = 'compileError';
|
|
229
|
+
// 通知主应用,当前出现渲染报错
|
|
230
|
+
sendPostMessage({
|
|
231
|
+
type: 'RenderError',
|
|
232
|
+
data: currentMode,
|
|
233
|
+
});
|
|
229
234
|
// 发送编译错误
|
|
230
235
|
logError(['Compile Error', currentCompileErrorMessage], currentMode);
|
|
231
236
|
ErrorContainer(rootDocument, root, '编译出错');
|
|
232
237
|
}
|
|
233
238
|
else if (currentRuntimeErrors.length) {
|
|
234
239
|
currentMode = 'runtimeError';
|
|
240
|
+
// 通知主应用,当前出现渲染报错
|
|
241
|
+
sendPostMessage({
|
|
242
|
+
type: 'RenderError',
|
|
243
|
+
data: currentMode,
|
|
244
|
+
});
|
|
235
245
|
// 发送运行错误
|
|
236
246
|
logError(['Uncaught Render Error', ...currentRuntimeErrors], currentMode);
|
|
237
247
|
// 叠加全部报错,将报错信息发送到妙搭
|
package/package.json
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lark-apaas/fullstack-rspack-preset",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12-alpha.patch.2",
|
|
4
4
|
"files": [
|
|
5
5
|
"lib",
|
|
6
|
+
"patches",
|
|
7
|
+
"scripts",
|
|
6
8
|
"preset.config.js"
|
|
7
9
|
],
|
|
8
10
|
"main": "./lib/index.js",
|
|
@@ -19,6 +21,8 @@
|
|
|
19
21
|
"scripts": {
|
|
20
22
|
"build": "tsc",
|
|
21
23
|
"watch": "tsc --watch",
|
|
24
|
+
"postinstall": "npm run apply-patch",
|
|
25
|
+
"apply-patch": "node scripts/apply-patch.js",
|
|
22
26
|
"test": "vitest run",
|
|
23
27
|
"test:watch": "vitest",
|
|
24
28
|
"prepublishOnly": "npm run build"
|
|
@@ -35,6 +39,7 @@
|
|
|
35
39
|
"colorjs.io": "^0.5.2",
|
|
36
40
|
"dotenv": "^16.4.5",
|
|
37
41
|
"echarts": "^6.0.0",
|
|
42
|
+
"patch-package": "^8.0.0",
|
|
38
43
|
"postcss-import": "^16.1.1",
|
|
39
44
|
"react-refresh": "^0.17.0",
|
|
40
45
|
"tailwind-merge": "^2.5.5",
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
diff --git a/node_modules/webpack-dev-server/client/socket.js b/node_modules/webpack-dev-server/client/socket.js
|
|
2
|
+
index 7dac5b6..904097b 100644
|
|
3
|
+
--- a/node_modules/webpack-dev-server/client/socket.js
|
|
4
|
+
+++ b/node_modules/webpack-dev-server/client/socket.js
|
|
5
|
+
@@ -31,6 +31,7 @@ var socket = function initSocket(url, handlers, reconnect) {
|
|
6
|
+
if (timeout) {
|
|
7
|
+
clearTimeout(timeout);
|
|
8
|
+
}
|
|
9
|
+
+ log.info("Socket connected");
|
|
10
|
+
if (typeof reconnect !== "undefined") {
|
|
11
|
+
maxRetries = reconnect;
|
|
12
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { execSync } from "child_process";
|
|
3
|
+
import path from "path";
|
|
4
|
+
import { fileURLToPath } from "url";
|
|
5
|
+
|
|
6
|
+
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
7
|
+
const sdkRoot = path.resolve(__dirname, "..");
|
|
8
|
+
const hostRoot = path.resolve(sdkRoot, "../../.."); // npm、yarn 场景下,安装在 node_modules/@lark-apaas/nestjs-datapaas
|
|
9
|
+
|
|
10
|
+
console.log(`[patch] Applying webpack-dev-server patch at host: ${hostRoot}`);
|
|
11
|
+
|
|
12
|
+
try {
|
|
13
|
+
execSync(
|
|
14
|
+
"npx patch-package --patch-dir node_modules/@lark-apaas/fullstack-rspack-preset/patches",
|
|
15
|
+
{ stdio: "inherit", cwd: hostRoot }
|
|
16
|
+
);
|
|
17
|
+
console.log("[patch] webpack-dev-server patched ✅");
|
|
18
|
+
} catch (err) {
|
|
19
|
+
console.error("[patch] Failed to apply webpack-dev-server patch ❌", err);
|
|
20
|
+
process.exit(1);
|
|
21
|
+
}
|
|
@@ -1,148 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 1,
|
|
3
|
-
"themeName": "UD Theme Style",
|
|
4
|
-
"theme": {
|
|
5
|
-
"seriesCnt": "6",
|
|
6
|
-
"backgroundColor": "rgba(0,0,0,0)",
|
|
7
|
-
"titleColor": "#1f2329",
|
|
8
|
-
"subtitleColor": "#8f959e",
|
|
9
|
-
"textColorShow": false,
|
|
10
|
-
"textColor": "#333",
|
|
11
|
-
"markTextColor": "#ffffff",
|
|
12
|
-
"color": [
|
|
13
|
-
"#3370eb",
|
|
14
|
-
"#1bcebf",
|
|
15
|
-
"#ffc60a",
|
|
16
|
-
"#ed6d0c",
|
|
17
|
-
"#dca1e4",
|
|
18
|
-
"#25b2e5",
|
|
19
|
-
"#6dcdeb",
|
|
20
|
-
"#288fcb",
|
|
21
|
-
"#94b5f5",
|
|
22
|
-
"#8f61d1",
|
|
23
|
-
"#8f61d1",
|
|
24
|
-
"#bf78e9",
|
|
25
|
-
"#008280",
|
|
26
|
-
"#27ad8e",
|
|
27
|
-
"#7bc335"
|
|
28
|
-
],
|
|
29
|
-
"borderColor": "#dee0e3",
|
|
30
|
-
"borderWidth": 0,
|
|
31
|
-
"visualMapColor": ["#25b2e5", "#6dcdeb", "#288fcb"],
|
|
32
|
-
"legendTextColor": "#8f959e",
|
|
33
|
-
"kColor": "#fdc6c4",
|
|
34
|
-
"kColor0": "transparent",
|
|
35
|
-
"kBorderColor": "#f54a45",
|
|
36
|
-
"kBorderColor0": "#32a645",
|
|
37
|
-
"kBorderWidth": "2",
|
|
38
|
-
"lineWidth": "1",
|
|
39
|
-
"symbolSize": "6",
|
|
40
|
-
"symbol": "emptyCircle",
|
|
41
|
-
"symbolBorderWidth": "1",
|
|
42
|
-
"lineSmooth": true,
|
|
43
|
-
"graphLineWidth": 1,
|
|
44
|
-
"graphLineColor": "#dee0e3",
|
|
45
|
-
"mapLabelColor": "#000",
|
|
46
|
-
"mapLabelColorE": "#516b91",
|
|
47
|
-
"mapBorderColor": "#516b91",
|
|
48
|
-
"mapBorderColorE": "#516b91",
|
|
49
|
-
"mapBorderWidth": 0.5,
|
|
50
|
-
"mapBorderWidthE": 1,
|
|
51
|
-
"mapAreaColor": "#f3f3f3",
|
|
52
|
-
"mapAreaColorE": "#a5e7f0",
|
|
53
|
-
"axes": [
|
|
54
|
-
{
|
|
55
|
-
"type": "all",
|
|
56
|
-
"name": "通用坐标轴",
|
|
57
|
-
"axisLineShow": true,
|
|
58
|
-
"axisLineColor": "#dee0e3",
|
|
59
|
-
"axisTickShow": false,
|
|
60
|
-
"axisTickColor": "#333",
|
|
61
|
-
"axisLabelShow": true,
|
|
62
|
-
"axisLabelColor": "#8f959e",
|
|
63
|
-
"splitLineShow": true,
|
|
64
|
-
"splitLineColor": ["#dee0e3"],
|
|
65
|
-
"splitAreaShow": false,
|
|
66
|
-
"splitAreaColor": ["rgba(250,250,250,0.05)", "rgba(200,200,200,0.02)"]
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"type": "category",
|
|
70
|
-
"name": "类目坐标轴",
|
|
71
|
-
"axisLineShow": true,
|
|
72
|
-
"axisLineColor": "#333",
|
|
73
|
-
"axisTickShow": true,
|
|
74
|
-
"axisTickColor": "#333",
|
|
75
|
-
"axisLabelShow": true,
|
|
76
|
-
"axisLabelColor": "#333",
|
|
77
|
-
"splitLineShow": false,
|
|
78
|
-
"splitLineColor": ["#ccc"],
|
|
79
|
-
"splitAreaShow": false,
|
|
80
|
-
"splitAreaColor": ["rgba(250,250,250,0.3)", "rgba(200,200,200,0.3)"]
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"type": "value",
|
|
84
|
-
"name": "数值坐标轴",
|
|
85
|
-
"axisLineShow": true,
|
|
86
|
-
"axisLineColor": "#333",
|
|
87
|
-
"axisTickShow": true,
|
|
88
|
-
"axisTickColor": "#333",
|
|
89
|
-
"axisLabelShow": true,
|
|
90
|
-
"axisLabelColor": "#333",
|
|
91
|
-
"splitLineShow": true,
|
|
92
|
-
"splitLineColor": ["#ccc"],
|
|
93
|
-
"splitAreaShow": false,
|
|
94
|
-
"splitAreaColor": ["rgba(250,250,250,0.3)", "rgba(200,200,200,0.3)"]
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
"type": "log",
|
|
98
|
-
"name": "对数坐标轴",
|
|
99
|
-
"axisLineShow": true,
|
|
100
|
-
"axisLineColor": "#333",
|
|
101
|
-
"axisTickShow": true,
|
|
102
|
-
"axisTickColor": "#333",
|
|
103
|
-
"axisLabelShow": true,
|
|
104
|
-
"axisLabelColor": "#333",
|
|
105
|
-
"splitLineShow": true,
|
|
106
|
-
"splitLineColor": ["#ccc"],
|
|
107
|
-
"splitAreaShow": false,
|
|
108
|
-
"splitAreaColor": ["rgba(250,250,250,0.3)", "rgba(200,200,200,0.3)"]
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"type": "time",
|
|
112
|
-
"name": "时间坐标轴",
|
|
113
|
-
"axisLineShow": true,
|
|
114
|
-
"axisLineColor": "#333",
|
|
115
|
-
"axisTickShow": true,
|
|
116
|
-
"axisTickColor": "#333",
|
|
117
|
-
"axisLabelShow": true,
|
|
118
|
-
"axisLabelColor": "#333",
|
|
119
|
-
"splitLineShow": true,
|
|
120
|
-
"splitLineColor": ["#ccc"],
|
|
121
|
-
"splitAreaShow": false,
|
|
122
|
-
"splitAreaColor": ["rgba(250,250,250,0.3)", "rgba(200,200,200,0.3)"]
|
|
123
|
-
}
|
|
124
|
-
],
|
|
125
|
-
"axisSeperateSetting": false,
|
|
126
|
-
"toolboxColor": "#8f959e",
|
|
127
|
-
"toolboxEmphasisColor": "#1f2329",
|
|
128
|
-
"tooltipAxisColor": "#dee0e3",
|
|
129
|
-
"tooltipAxisWidth": 1,
|
|
130
|
-
"timelineLineColor": "#336df4",
|
|
131
|
-
"timelineLineWidth": "-1",
|
|
132
|
-
"timelineItemColor": "#336df4",
|
|
133
|
-
"timelineItemColorE": "#1456f0",
|
|
134
|
-
"timelineCheckColor": "#1456f0",
|
|
135
|
-
"timelineCheckBorderColor": "#94b4ff",
|
|
136
|
-
"timelineItemBorderWidth": "0.5",
|
|
137
|
-
"timelineControlColor": "#336df4",
|
|
138
|
-
"timelineControlBorderColor": "#336df4",
|
|
139
|
-
"timelineControlBorderWidth": 0.5,
|
|
140
|
-
"timelineLabelColor": "#8f959e",
|
|
141
|
-
"datazoomBackgroundColor": "rgba(0,0,0,0)",
|
|
142
|
-
"datazoomDataColor": "rgba(255,255,255,0.3)",
|
|
143
|
-
"datazoomFillColor": "rgba(167,183,204,0.4)",
|
|
144
|
-
"datazoomHandleColor": "#a7b7cc",
|
|
145
|
-
"datazoomHandleWidth": "100",
|
|
146
|
-
"datazoomLabelColor": "#333"
|
|
147
|
-
}
|
|
148
|
-
}
|