Fixing monaco.d.ts generation

This commit is contained in:
Dirk Baeumer
2016-06-24 11:14:41 +02:00
parent 9d38f78fb3
commit 4e2e9302d3
4 changed files with 17 additions and 1 deletions

View File

@@ -129,6 +129,10 @@ function monacodtsTask(out, isWatch) {
clearTimeout(timer);
timer = -1;
}
if (reporter.hasErrors()) {
monacodts.complainErrors();
return;
}
var result = monacodts.run(out);
if (!result.isTheSame) {
if (isWatch) {
@@ -147,7 +151,7 @@ function monacodtsTask(out, isWatch) {
var resultStream = es.through(function(data) {
var filePath = path.normalize(data.path);
if (filesToWatchMap[filePath]) {
if (isWatch && filesToWatchMap[filePath]) {
runSoon(5000);
}
this.emit('data', data);