mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-14 19:16:17 -06:00
Fix bad merge
This commit is contained in:
parent
52fa900b5c
commit
d3ef20caf0
@ -298,8 +298,7 @@ gulp.task(runJs, /*help*/ false, [typescriptServicesJs, tsserverlibraryDts], ()
|
||||
|
||||
gulp.task(
|
||||
"tests",
|
||||
if (tests || runners || light || testTimeout || taskConfigsFolder) {
|
||||
writeTestConfigFile(tests, runners, light, taskConfigsFolder, workerCount, stackTraceLimit, testTimeout);
|
||||
"Builds the test infrastructure using the built compiler",
|
||||
[runJs]);
|
||||
|
||||
gulp.task(
|
||||
|
||||
@ -80,10 +80,9 @@ proc.on('exit', (code, signal) => {
|
||||
});
|
||||
});
|
||||
|
||||
// terminate children.
|
||||
process.on('SIGINT', () => {
|
||||
proc.kill('SIGINT'); // calls runner.abort()
|
||||
proc.kill('SIGTERM'); // if that didn't work, we're probably in an infinite loop, so make it die.
|
||||
proc.kill('SIGINT');
|
||||
proc.kill('SIGTERM');
|
||||
});
|
||||
|
||||
function escapeRegExp(pattern) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user