forked from facebook/create-react-app
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscreencast-start.js
58 lines (44 loc) · 1.19 KB
/
screencast-start.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
#!/usr/bin/env node
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';
const execa = require('execa');
const meow = require('meow');
const multimatch = require('multimatch');
main(meow());
function main(cli) {
let count = 0;
const start = Date.now();
const duration = parseInt(cli.flags.timeout, 10) * 1000;
const cp = execa.shell(cli.flags.command);
const target = parseInt(cli.flags.patternCount || '1', 10);
cp.stdout.on('data', data => {
process.stdout.write(data);
const matches = multimatch([String(data)], cli.flags.pattern);
const errMatches = multimatch([String(data)], cli.flags.errorPattern);
if (matches.length > 0) {
count++;
}
if (errMatches.length > 0) {
process.exit(1);
}
if (count >= target) {
setTimeout(() => {
process.exit(0);
}, duration);
}
});
cp.on('exit', e => {
const elapsed = Date.now() - start;
if (elapsed >= duration) {
return;
}
setTimeout(() => {
process.exit(e.code);
}, duration - elapsed);
});
}