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:
authorAlex Dima <alexdima@microsoft.com>2019-02-04 14:15:38 +0300
committerAlex Dima <alexdima@microsoft.com>2019-02-04 16:41:39 +0300
commita592b43925bed0dbf5ad1c522498b50ac41c89f3 (patch)
tree7f48456e761662d0d1aa0848f38cf509e1a23cea /gulpfile.js
parentd2ec27494b0abc0bf1123183e3a72a11d4d93982 (diff)
Debt: Remove unused gulp tasks
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js
index fe899377d79..133717f6c3a 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -27,12 +27,10 @@ gulp.task('watch-client-build', ['clean-client-build'], compilation.watchTask('o
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']);
// All Build
-gulp.task('clean-build', ['clean-client-build', 'clean-extensions-build']);
gulp.task('compile-build', ['compile-client-build', 'compile-extensions-build']);
gulp.task('watch-build', ['watch-client-build', 'watch-extensions-build']);