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:
authorJoao Moreno <jomo@microsoft.com>2015-11-20 10:48:59 +0300
committerJoao Moreno <jomo@microsoft.com>2015-11-20 10:48:59 +0300
commitcc24139a40632ce4b0b7d124871b5cb86b9be060 (patch)
tree099f67697f62d263c27394d63030f26dc0d2bf00 /gulpfile.js
parent6e94b27e06cef23a84fca0aff18b7702dc670014 (diff)
VSCODE_BUILD_QUIET
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 45a6a4278b7..56afb14c3f0 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -29,7 +29,7 @@ var rootDir = path.join(__dirname, 'src');
var tsOptions = {
target: 'ES5',
module: 'amd',
- verbose: true,
+ verbose: process.env['VSCODE_BUILD_QUIET'] ? false : true,
preserveConstEnums: true,
experimentalDecorators: true,
sourceMap: true,