forked from angular/web-codegen-scorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexec.ts
More file actions
66 lines (61 loc) · 1.68 KB
/
exec.ts
File metadata and controls
66 lines (61 loc) · 1.68 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
import { exec } from 'node:child_process';
/**
* Runs a command in a specific directory.
* @param command Command that should be run.
* @param directory Directory in which to run the command.
* @param environmentVariables Environment variables that should be passed to the command.
*/
export function executeCommand(
command: string,
directory: string,
environmentVariables: Record<string, string> = {},
opts: {
forwardStderrToParent?: boolean;
forwardStdoutToParent?: boolean;
notifyWhenMatchingStdout?: { notifyFn: () => void; pattern: RegExp };
abortSignal?: AbortSignal;
} = {}
): Promise<string> {
return new Promise<string>((resolve, reject) => {
const proc = exec(command, {
cwd: directory,
env: {
...process.env,
...environmentVariables,
},
signal: opts.abortSignal,
});
let stdout = '';
let stderr = '';
let notifyWhenMatchingStdout = opts.notifyWhenMatchingStdout;
proc.on('error', (err) => {
reject(err);
});
proc.stdout!.on('data', (c) => {
stdout += c;
if (opts.forwardStdoutToParent) {
process.stdout.write(c);
}
if (
notifyWhenMatchingStdout &&
notifyWhenMatchingStdout.pattern.test(stdout)
) {
notifyWhenMatchingStdout.notifyFn();
notifyWhenMatchingStdout = undefined;
}
});
proc.stderr!.on('data', (c) => {
stderr += c;
if (opts.forwardStderrToParent) {
process.stderr.write(c);
}
});
proc.on('close', (code, signal) => {
if (code !== 0 || signal !== null) {
reject(new Error(stderr || stdout));
} else {
resolve(stdout);
}
});
});
}