Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 3b3a997c746..cbee057d47b 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -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);