From b00c5729275f75e96e021016894ec51b7a930dec Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Fri, 21 Oct 2016 09:38:01 +0200 Subject: Fix missing copyright header --- gulpfile.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'gulpfile.js') 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'); -- cgit v1.2.3