Fix broken problem-matchers

This commit is contained in:
Manuel Thalmann 2021-05-11 17:14:40 +00:00
parent 706835d97c
commit b600414d9d

12
.vscode/tasks.json vendored
View file

@ -34,17 +34,17 @@
{ {
"base": "$gulp-tsc", "base": "$gulp-tsc",
"background": { "background": {
"activeOnStart": false, "activeOnStart": true,
"beginsPattern": "^(Starting compilation in watch mode|File change detected. Starting incremental compilation)", "beginsPattern": "(Starting compilation in watch mode|File change detected. Starting incremental compilation)",
"endsPattern": "^Found \\d+ errors. Watching for file changes." "endsPattern": "Found \\d+ errors. Watching for file changes."
} }
}, },
{ {
"base": "$node-sass", "base": "$node-sass",
"background": { "background": {
"activeOnStart": false, "activeOnStart": true,
"beginsPattern": "^Rebuilding scss-code.", "beginsPattern": "Rebuilding scss-code.",
"endsPattern": "^Rebuilding scss-code finished." "endsPattern": "Rebuilding scss-code finished."
} }
} }
], ],