Skip to content

Commit 9d8619f

Browse files
author
Piotr Oleś
committed
v0.2.5 release
1 parent a796ff1 commit 9d8619f

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.2.5
2+
* Add `async` option - more information in `README.md`
3+
14
## v0.2.4
25
* Fix `ESLint: "fork-ts-checker-webpack-plugin" is not published.` issue
36

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,11 @@ Path to *tslint.json* file or `true`. If `true`, uses `path.resolve(compiler.opt
6565

6666
* **watch** `string | string[]`:
6767
Directories or files to watch by service. Not necessary but improves performance (reduces number of `fs.stat` calls).
68-
68+
69+
* **async** `boolean`:
70+
True by default - `async: false` can block webpack's emit to wait for type checker/linter and to add errors to the webpack's compilation.
71+
We recommend to use it in projects where type checking is faster than webpack's build - it's better for integration with other plugins.
72+
6973
* **ignoreDiagnostics** `number[]`:
7074
List of typescript diagnostic codes to ignore.
7175

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fork-ts-checker-webpack-plugin",
3-
"version": "0.2.4",
3+
"version": "0.2.5",
44
"description": "Runs typescript type checker and linter on separate process.",
55
"main": "lib/index.js",
66
"files": [

0 commit comments

Comments
 (0)