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>2016-10-21 10:38:01 +0300
committerAlex Dima <alexdima@microsoft.com>2016-10-21 10:38:14 +0300
commitb00c5729275f75e96e021016894ec51b7a930dec (patch)
tree2d182c25705bd1833963d04f50ea4452623e20e6 /gulpfile.js
parent74086c887d35e51e81ca7d8b131b66e0e12f7612 (diff)
Fix missing copyright header
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index dd7dba9d993..5aa3bf0d4db 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -52,12 +52,17 @@ var ALL_EDITOR_TASKS = [
'minify-editor',
'clean-editor-distro',
'editor-distro',
- 'analyze-editor-distro'
+ 'analyze-editor-distro',
+
+ // hygiene tasks
+ 'tslint',
+ 'hygiene',
];
var runningEditorTasks = process.argv.length > 2 && process.argv.slice(2).every(function(arg) { return (ALL_EDITOR_TASKS.indexOf(arg) !== -1); });
if (runningEditorTasks) {
require(`./build/gulpfile.editor`);
+ require(`./build/gulpfile.hygiene`);
} else {
// Load all the gulpfiles only if running tasks other than the editor tasks
const build = path.join(__dirname, 'build');