Skip to content

Commit ac118d5

Browse files
committed
Specify minimum versions of peerDependencies for consistency with readme
1 parent c88c37a commit ac118d5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Webpack plugin that runs typescript type checker on a separate process.
66

77
## Installation
8-
This plugin requires minimum **webpack 2.3**, **typescript 2.1** and optionally **tslint 5.0**
8+
This plugin requires minimum **webpack 2.3**, **typescript 2.1** and optionally **tslint 4.0**
99
```sh
1010
npm install --save-dev fork-ts-checker-webpack-plugin
1111
```

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@
7878
"webpack": "^4.0.0"
7979
},
8080
"peerDependencies": {
81-
"tslint": "^4.0.0 || ^5.0.0",
82-
"typescript": "^2.1.0",
83-
"webpack": "^2.3.0 || ^3.0.0 || ^4.0.0"
81+
"tslint": ">= 4.0.0",
82+
"typescript": ">= 2.1.0",
83+
"webpack": ">= 2.3.0"
8484
},
8585
"dependencies": {
8686
"babel-code-frame": "^6.22.0",

0 commit comments

Comments
 (0)