Skip to content

Commit ccb90c2

Browse files
authored
Fix problemMatcher patterns for the watch task (#1137)
Webpack output patterns have changed since these patterns were written, without this change the default launch config hangs.
1 parent a3f48af commit ccb90c2

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.vscode/tasks.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
],
2626
"background": {
2727
"activeOnStart": true,
28-
"beginsPattern": "Compilation \\w+ starting",
29-
"endsPattern": "Compilation\\s+finished"
28+
"beginsPattern": "Compiler '[^']+' starting",
29+
"endsPattern": "Compiler '[^']+' finished"
3030
}
3131
},
3232
"isBackground": true,

webpack.config.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ module.exports = function (env, argv) {
3535
'applicationinsights-native-metrics': 'commonjs applicationinsights-native-metrics', // ignored because we don't ship native module
3636
vscode: 'commonjs vscode'
3737
},
38-
devtool: 'source-map'
38+
devtool: 'source-map',
39+
infrastructureLogging: {
40+
level: 'log'
41+
}
3942
}];
4043
};

0 commit comments

Comments
 (0)