-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
/
build.js
48 lines (41 loc) · 1.23 KB
/
build.js
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
// This is a deno helper script to locally build the installer using Inno Setup
// Yeah, I know it's not Node, but we need to compile this and Node SEAs on Win32 are a PITA.
const content = await Deno.readTextFile('./nvm.iss')
const data = JSON.parse(await Deno.readTextFile('./src/manifest.json'))
const {version} = data
const output = content.replaceAll('{{VERSION}}', version)
await Deno.writeTextFile('./.tmp.iss', output)
console.log('Viewing /.tmp.iss')
output.split("\n").forEach((line, num) => {
let n = `${num+1}`
while (n.length < 3) {
n = ' ' + n
}
console.log(`${n} | ${line}`)
})
const command = await new Deno.Command('.\\assets\\buildtools\\iscc.exe', {
args: ['.\\.tmp.iss'],
stdout: 'piped',
stderr: 'piped',
})
const process = command.spawn();
// Stream stdout
(async () => {
const decoder = new TextDecoder();
for await (const chunk of process.stdout) {
console.log(decoder.decode(chunk));
}
})();
// Stream stderr
(async () => {
const decoder = new TextDecoder();
for await (const chunk of process.stderr) {
console.error(decoder.decode(chunk));
}
})();
// Wait for completion
const status = await process.status;
Deno.remove('.\\.tmp.iss');
if (!status.success) {
Deno.exit(status.code);
}