forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexec.js
59 lines (52 loc) · 1.52 KB
/
exec.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
49
50
51
52
53
54
55
56
57
58
59
// @ts-check
const path = require('path');
const child_process = require('child_process');
const chalk = require('chalk');
const { logStatus } = require('./logging');
const SEPARATOR = process.platform === 'win32' ? ';' : ':',
env = Object.assign({}, process.env);
env.PATH = path.resolve('./node_modules/.bin') + SEPARATOR + env.PATH;
/**
* Execute a command.
*
* @typedef {{
* stdout?: string | Buffer;
* stderr?: string | Buffer;
* err?: import("child_process").ExecException
* }} ExecResult
*
* @param {string} cmd Command to execute
* @param {string} [displayName] Display name for the command
* @param {string} [cwd] Working directory in which to run the command
* @param {{ stdout?: any; stderr?: any; }} [opts] Pipe stdout/stderr somewhere. Can pass `process` global.
* @returns {Promise<ExecResult>}
*/
function exec(cmd, displayName, cwd = process.cwd(), opts = {}) {
logStatus(chalk.gray('Executing: ') + chalk.cyan(displayName || cmd));
const execOptions = {
cwd,
env: env,
encoding: 'utf8',
};
return new Promise((resolve, reject) => {
const child = child_process.exec(cmd, execOptions, (error, stdout, stderr) =>
error
? reject({
error,
stdout: stdout,
stderr: stderr,
})
: resolve({
stdout: stdout,
stderr: stderr,
}),
);
if (opts.stdout) {
child.stdout.pipe(opts.stdout);
}
if (opts.stderr) {
child.stderr.pipe(opts.stderr);
}
});
}
module.exports = exec;