Skip to content

Commit

Permalink
build: allow for broader versions of tslib peer dependency
Browse files Browse the repository at this point in the history
It's generally good practice to make peer dependencies as lenient as possible so that they
are compatible with other packages that share that same peer dependency, as mentioned
here: https://nodejs.org/en/blog/npm/peer-dependencies/
  • Loading branch information
lukelafountaine committed Jul 12, 2022
1 parent ae6faca commit f743c0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"type guards"
],
"peerDependencies": {
"tslib": "1.9.x"
"tslib": ">= 1.9.0 < 2"
},
"devDependencies": {
"@silvermine/chai-strictly-equal": "1.1.0",
Expand Down

0 comments on commit f743c0b

Please sign in to comment.