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:
authorJohannes Rieken <johannes.rieken@gmail.com>2018-04-09 15:17:56 +0300
committerJohannes Rieken <johannes.rieken@gmail.com>2018-04-09 15:18:08 +0300
commitbd5f9f58014d80847703887b538d2c72f27405df (patch)
tree4892b3aa178b524c0bbab657f852a4b72d69181e /gulpfile.js
parente310a88db609bc0e943ae24a6f2c55a1a139ac68 (diff)
disable `monaco-typecheck-watch` because it seems to stall
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 5e4bf3aa634..db6d924ae73 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -29,7 +29,7 @@ gulp.task('default', ['compile']);
// All
gulp.task('clean', ['clean-client', 'clean-extensions']);
gulp.task('compile', ['monaco-typecheck', 'compile-client', 'compile-extensions']);
-gulp.task('watch', ['monaco-typecheck-watch', 'watch-client', 'watch-extensions']);
+gulp.task('watch', [/* 'monaco-typecheck-watch', */ 'watch-client', 'watch-extensions']);
// All Build
gulp.task('clean-build', ['clean-client-build', 'clean-extensions-build']);