Skip to content

Commit

Permalink
Add types to the plugin (fixes #137) and prepare 0.4.5 release (#139)
Browse files Browse the repository at this point in the history
* Fix #137 and prepare 0.4.5 release
* update changelog
  • Loading branch information
johnnyreilly authored Aug 8, 2018
1 parent 68ec1b6 commit 45dc15a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v0.4.5

* [Fix(types): Add types to the plugin](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/139) (#137)
* [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)

## v0.4.4

* [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)
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "fork-ts-checker-webpack-plugin",
"version": "0.4.4",
"version": "0.4.5",
"description": "Runs typescript type checker and linter on separate process.",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"files": [
"lib"
],
Expand Down
4 changes: 3 additions & 1 deletion src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
],
"module": "commonjs",
"moduleResolution": "node",
"outDir": "../lib"
"declaration": true,
"outDir": "../lib",
"declarationDir": "../lib/types"
}
}

0 comments on commit 45dc15a

Please sign in to comment.