From dddb9d4577af7df02020328040961a98ca112b65 Mon Sep 17 00:00:00 2001 From: Erich Gamma Date: Tue, 8 Mar 2016 09:03:08 +0100 Subject: [PATCH] Fix that gulp tasks also run on Windows --- .vscode/tasks.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 55d4551fef2..49361568195 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,6 +1,14 @@ { "version": "0.1.0", - "command": "./node_modules/.bin/gulp", + "windows": { + "command": ".\\node_modules\\.bin\\gulp" + }, + "osx": { + "command": "./node_modules/.bin/gulp" + }, + "linux": { + "command": "./node_modules/.bin/gulp" + }, "isShellCommand": true, "tasks": [ { @@ -12,7 +20,9 @@ "isWatching": true, "problemMatcher": { "owner": "typescript", - "fileLocation": ["absolute"], + "fileLocation": [ + "absolute" + ], "pattern": { "regexp": "^\\*\\*\\* Error: ([^(]+)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\): (.*)$", "file": 1,