Skip to content

Commit

Permalink
feat(deps): open ESLint peerDependency range to any version above 5.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaudcolas committed Jun 3, 2020
1 parent 2339cbc commit a5239e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"eslint-plugin-react-hooks": "^1.7.0"
},
"peerDependencies": {
"eslint": "^5.6.0 || ^6.0.0"
"eslint": ">=5.6.0"
},
"scripts": {
"lint": "eslint --report-unused-disable-directives . && prettier --check '**/?(.)*.{md,css,scss,js,json,yaml,yml,html}'",
Expand Down
2 changes: 1 addition & 1 deletion src/semver.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe("semver - should those tests break, consider releasing a new major vers
it("peerDependencies", () => {
expect(pkg.peerDependencies).toMatchInlineSnapshot(`
Object {
"eslint": "^5.6.0 || ^6.0.0",
"eslint": ">=5.6.0",
}
`);
});
Expand Down

0 comments on commit a5239e7

Please sign in to comment.