From 2cb2c4073e1158de12ce24d0746de99a13dd8c8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Thu, 20 Apr 2017 11:27:12 +0200 Subject: [PATCH] build: moved copy node modules ahead of tslint --- tasks/build_task.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/build_task.js b/tasks/build_task.js index e6751aa399d..f9988dc1181 100644 --- a/tasks/build_task.js +++ b/tasks/build_task.js @@ -8,10 +8,10 @@ module.exports = function(grunt) { 'jshint:source', 'jshint:tests', 'jscs', - 'exec:tslint', 'clean:release', 'copy:node_modules', 'copy:public_to_gen', + 'exec:tslint', 'exec:tscompile', 'karma:test', 'phantomjs',