Skip to content

Commit 45dc15a

Browse files
authored
Add types to the plugin (fixes #137) and prepare 0.4.5 release (#139)
* Fix #137 and prepare 0.4.5 release * update changelog
1 parent 68ec1b6 commit 45dc15a

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v0.4.5
2+
3+
* [Fix(types): Add types to the plugin](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/139) (#137)
4+
* [Fix(vue): Avoid false positive of no-consecutive-blank-lines TSLint rule in Vue file](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/138) (#130)
5+
16
## v0.4.4
27

38
* [Fix(vue): resolve src attribute on the script block on Vue files](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/130) (#111, #85)

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"name": "fork-ts-checker-webpack-plugin",
3-
"version": "0.4.4",
3+
"version": "0.4.5",
44
"description": "Runs typescript type checker and linter on separate process.",
55
"main": "lib/index.js",
6+
"types": "lib/types/index.d.ts",
67
"files": [
78
"lib"
89
],

src/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
],
1414
"module": "commonjs",
1515
"moduleResolution": "node",
16-
"outDir": "../lib"
16+
"declaration": true,
17+
"outDir": "../lib",
18+
"declarationDir": "../lib/types"
1719
}
1820
}

0 commit comments

Comments
 (0)