Skip to content

Commit

Permalink
fix: add @types/jest as optional peerDependencies to solve yarn 2 (
Browse files Browse the repository at this point in the history
  • Loading branch information
ahnpnl committed Jul 19, 2021
1 parent 310fb9a commit 5fbf43e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion package.json
Expand Up @@ -71,14 +71,18 @@
"jest": "^27.0.0",
"typescript": ">=3.8 <5.0",
"babel-jest": ">=27.0.0 <28",
"@babel/core": ">=7.0.0-beta.0 <8"
"@babel/core": ">=7.0.0-beta.0 <8",
"@types/jest": "^26.0.0"
},
"peerDependenciesMeta": {
"babel-jest": {
"optional": true
},
"@babel/core": {
"optional": true
},
"@types/jest": {
"optional": true
}
},
"husky": {
Expand Down

0 comments on commit 5fbf43e

Please sign in to comment.