Skip to content

Commit

Permalink
#8755: Apply problem matchers specified by task provider
Browse files Browse the repository at this point in the history
Signed-off-by: Miro Spönemann <[email protected]>
  • Loading branch information
spoenemann committed Nov 16, 2020
1 parent 632a67a commit c6a21cf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/plugin-ext/src/plugin/type-converters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,7 @@ export function fromTask(task: theia.Task): TaskDto | undefined {
const taskDto = {} as TaskDto;
taskDto.label = task.name;
taskDto.source = task.source;
taskDto.problemMatcher = task.problemMatchers;
if ('detail' in task) {
taskDto.detail = (task as theia.Task2).detail;
}
Expand Down

0 comments on commit c6a21cf

Please sign in to comment.