Skip to content

Commit

Permalink
fix: make peerDependencies looser
Browse files Browse the repository at this point in the history
* PRO: don't have to track every major version change
* PRO: breaking changes in deps for reasons like node support we don't
    care about
* CON: breaking changes in deps for API changes are important, but we
    can always refine the peerDep as we come across one of those
  • Loading branch information
dbushong committed Aug 16, 2019
1 parent cbf0f2a commit 9e61ef3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
}
},
"peerDependencies": {
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-import": ">=2.8.0",
"eslint-plugin-mocha": ">=5.1.0",
"eslint-plugin-node": ">=8.0.1",
"eslint-plugin-prettier": ">=2.6.2",
"eslint": "^5.1.0"
},
"dependencies": {},
Expand Down

0 comments on commit 9e61ef3

Please sign in to comment.