-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtask.mts
222 lines (199 loc) · 5.27 KB
/
task.mts
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
import { $, argv, fs, os, path, usePowerShell, within } from "zx";
import { fileURLToPath } from "url";
import spawn from "cross-spawn";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
let pack = await fs.readJSON(path.resolve(__dirname, "./package.json"));
let webpackage = await fs.readJSON(
path.resolve(__dirname, "./web/package.json")
);
if (webpackage.version != pack.version) {
webpackage.version = pack.version;
await fs.writeFile(
path.resolve(__dirname, "./web/package.json"),
JSON.stringify(webpackage, null, 2)
);
}
let electronpackage = await fs.readJSON(
path.resolve(__dirname, "./electron/package.json")
);
if (electronpackage.version != pack.version) {
electronpackage.version = pack.version;
await fs.writeFile(
path.resolve(__dirname, "./electron/package.json"),
JSON.stringify(electronpackage, null, 2)
);
}
$.verbose = true;
if (os.platform() === "win32") {
usePowerShell();
}
fs.writeFileSync(
"./electron/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.js",
fs
.readFileSync(
"./electron/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.js"
)
.toString()
.replace(
`import { spawn } from "node:child_process";`,
`import spawn from "cross-spawn";`
)
);
if (
!fs
.readFileSync(
"./electron/node_modules/@modelcontextprotocol/sdk/dist/client/sse.js"
)
.toString()
.includes(`'eventsource'`)
) {
fs.writeFileSync(
"./electron/node_modules/@modelcontextprotocol/sdk/dist/client/sse.js",
fs
.readFileSync(
"./electron/node_modules/@modelcontextprotocol/sdk/dist/client/sse.js"
)
.toString()
.replace(
`import { JSONRPCMessageSchema } from "../types.js";`,
`import { JSONRPCMessageSchema } from "../types.js";
import {EventSource} from 'eventsource'`
)
);
}
const spawnWithOutput = (command: string, args: string[], options) => {
return new Promise((resolve, reject) => {
const proc = spawn(command, args, options);
let stdout = "";
let stderr = "";
proc.stdout.pipe(process.stdout);
proc.stderr.pipe(process.stderr);
proc.stdout.on("data", (data) => {
stdout += data.toString();
// console.log(data.toString()); // 实时输出
});
proc.stderr.on("data", (data) => {
stderr += data.toString();
// console.error(data.toString()); // 实时输出错误
});
proc.on("close", (code) => {
if (code !== 0) {
reject(new Error(`Command failed with code ${code}\n${stderr}`));
} else {
resolve({
stdout,
stderr,
code,
});
}
});
proc.on("error", (err) => {
reject(err);
});
});
};
if (argv.dev) {
spawnWithOutput(
"npx",
["cross-env", "NODE_ENV=development", "myEnv=dev", "webpack", "serve"],
{
cwd: path.resolve(__dirname, "./web/"),
}
);
spawnWithOutput(
"npx",
[
"cross-env",
"NODE_ENV=development",
"myEnv=dev",
"webpack",
"-w",
"-c",
"webpack.eval.js",
],
{
cwd: path.resolve(__dirname, "./web/"),
}
);
spawnWithOutput("npm", ["run", "dev"], {
cwd: path.resolve(__dirname, "./electron/"),
});
// $({
// cwd: path.resolve(__dirname, "./web/"),
// spawn: spawn as any,
// })`npx cross-env NODE_ENV=development webpack serve -c webpack.config.js`;
// $({
// cwd: path.resolve(__dirname, "./electron/"),
// spawn: spawn as any,
// })`npm run dev`;
}
if (argv.prod) {
await $({
cwd: path.resolve(__dirname, "./web/"),
})`npx cross-env NODE_ENV=production myEnv=prod webpack -c webpack.config.js`;
await fs.copy(
`./web/public/logo.png`,
`./electron/web-build/assets/favicon.png`,
{
overwrite: true,
}
);
await $({
cwd: path.resolve(__dirname, "./electron/"),
})`npm run prod`;
let p = path.resolve(__dirname, `./dist`);
fs.ensureDirSync(p);
let pack = await fs.readJSON(
path.resolve(__dirname, "./electron/package.json")
);
if (os.platform() === "win32") {
await fs.copy(
`./electron/dist/HyperChat Setup ${pack.version}.exe`,
p + `/HyperChat-Setup-${pack.version}.exe`,
{
overwrite: true,
}
);
} else {
let name = pack.version;
if (process.env.MYRUNENV != "github") {
name = `${pack.version}-sign`;
}
if (fs.existsSync(`./electron/dist/HyperChat Setup ${pack.version}.exe`)) {
await fs.copy(
`./electron/dist/HyperChat Setup ${pack.version}.exe`,
p + `/HyperChat-Setup-${name}.exe`,
{
overwrite: true,
}
);
}
await fs.copy(
`./electron/dist/HyperChat-${pack.version}-arm64.dmg`,
p + `/HyperChat-${name}-arm64.dmg`,
{
overwrite: true,
}
);
await fs.copy(
`./electron/dist/HyperChat-${pack.version}.dmg`,
p + `/HyperChat-${name}-x64.dmg`,
{
overwrite: true,
}
);
}
}
if (argv.test) {
await within(() => {
return Promise.all([
$({
cwd: path.resolve(__dirname, "./web/"),
})`npx cross-env NODE_ENV=development myEnv=test webpack -c webpack.config.js`,
$({
cwd: path.resolve(__dirname, "./electron/"),
})`npm run testprod`,
]);
});
}