From c0f77bf11e46352897eec80af097904cc418d4c6 Mon Sep 17 00:00:00 2001 From: Kelvin Schoofs Date: Fri, 8 Jan 2021 14:59:29 +0100 Subject: [PATCH] Fix problemMatcher for webview watch task --- .vscode/tasks.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index b66726b..d82a55b 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -44,16 +44,16 @@ "applyTo": "closedDocuments", "background": { "activeOnStart": true, - "beginsPattern": "^Compiling...$", - "endsPattern": "Finished compiling" + "beginsPattern": "Compiling.*?|Compilation .*?starting", + "endsPattern": "Compiled .*?successfully|Failed .*?to.*?compile.*?" }, - "pattern":[ + "pattern": [ { "regexp": "^(.+)$", "file": 1 }, { - "regexp": "^\\((\\d+),(\\d+)\\): (.+)$", + "regexp": "\\((\\d+),(\\d+)\\):\\s*(.+)", "line": 1, "column": 2, "message": 3,