Skip to content

Commit 09d7a65

Browse files
committed
Adds support for multiple configs and verbose output
1 parent 96f87b3 commit 09d7a65

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [0.0.4]
8+
9+
### Added
10+
11+
- Adds support for `--info-verbosity verbose` as [webpack/webpack-cli#570](https://github.com/webpack/webpack-cli/issues/570) as been fixed
12+
713
## [0.0.3]
814

915
### Fixed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ The following example shows how to add problem matchers to your project:
3838

3939
👉 In order for **$ts-webpack-watch** and **$tslint-webpack-watch** to work properly, you must add `--info-verbosity verbose` to your webpack watch command e.g. `webpack --watch --env.development --info-verbosity verbose` as this instructs webpack to output lifecycle event messages for each re-compile
4040

41-
If you are returning multiple configurations from your `webpack.config.js` note that currently `--info-verbosity verbose` causes webpack to crash — See 🐛 [webpack/webpack#7906](https://github.com/webpack/webpack/issues/7906)
42-
4341
You can also use **$ts-webpack-watch** and **$tslint-webpack-watch** as a base problem matcher for your own custom needs:
4442

4543
```json

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "tsl-problem-matcher",
33
"displayName": "TypeScript + Webpack Problem Matchers",
44
"description": "Provides problem matchers for TypeScript projects using Webpack with ts-loader and/or tslint-loader",
5-
"version": "0.0.3",
5+
"version": "0.0.4",
66
"author": {
77
"name": "Eric Amodio",
88
"email": "eamodio@gmail.com"
@@ -90,10 +90,10 @@
9090
"background": {
9191
"activeOnStart": true,
9292
"beginsPattern": {
93-
"regexp": "Compilation starting…"
93+
"regexp": "Compilation (.*?)starting…"
9494
},
9595
"endsPattern": {
96-
"regexp": "Compilation finished"
96+
"regexp": "Compilation (.*?)finished"
9797
}
9898
}
9999
},
@@ -109,10 +109,10 @@
109109
"background": {
110110
"activeOnStart": true,
111111
"beginsPattern": {
112-
"regexp": "Compilation starting…"
112+
"regexp": "Compilation (.*?)starting…"
113113
},
114114
"endsPattern": {
115-
"regexp": "Compilation finished"
115+
"regexp": "Compilation (.*?)finished"
116116
}
117117
}
118118
}

0 commit comments

Comments
 (0)