From 3993ed97276df73ca60b48597bf8d5143d36c90d Mon Sep 17 00:00:00 2001 From: Hristo Deshev Date: Mon, 16 Nov 2015 11:30:53 +0200 Subject: [PATCH 1/3] Disable color output in grunt invocations from within Visual Studio. --- CrossPlatformModules.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CrossPlatformModules.csproj b/CrossPlatformModules.csproj index 7e4fe85c9..ef59023b7 100644 --- a/CrossPlatformModules.csproj +++ b/CrossPlatformModules.csproj @@ -2076,7 +2076,7 @@ --runtslint=true --runtslint=false - + @@ -2102,4 +2102,4 @@ - \ No newline at end of file + From 40bb7f7e4ab307597ae2cb888d6a87eb8f96189d Mon Sep 17 00:00:00 2001 From: Hristo Deshev Date: Mon, 16 Nov 2015 12:02:40 +0200 Subject: [PATCH 2/3] Don't copy node_modules to out dir --- gruntfile.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gruntfile.js b/gruntfile.js index 8094a9619..5e56b9b00 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -265,11 +265,12 @@ module.exports = function(grunt) { childPackageFiles: { expand: true, src: [ - localCfg.srcDir + "/**/package.json", - "!./package.json", - "!./Deploy/**/*.*", - "!./bin/**/*.*", - "!./Tests/**/*.*", + "**/package.json", + "!package.json", + "!Deploy/**/*.*", + "!bin/**/*.*", + "!Tests/**/*.*", + "!node_modules/**/*.*", "!" + localCfg.outDir + "/**/*.*" ], dest: localCfg.outModulesDir + "/" From d32d4115954e8dd78c2b4a052d324b3df1f750b9 Mon Sep 17 00:00:00 2001 From: Hristo Deshev Date: Mon, 16 Nov 2015 13:24:07 +0200 Subject: [PATCH 3/3] Explicitly reference tslint@2.5.1 in package.json. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 3cce63271..daa8a7192 100644 --- a/package.json +++ b/package.json @@ -28,6 +28,7 @@ "grunt-simple-mocha": "0.4.0", "grunt-ts": "5.0.0-beta.5", "grunt-tslint": "2.5.0", + "tslint": "2.5.1", "grunt-typedoc": "0.2.3", "grunt-untar": "0.0.1", "mocha": "2.2.5",