Skip to content

Commit

Permalink
build(jest-config)!: Make typescript a peer dependency
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This might cause build failures if you're running an
unsupported version of typescript.
  • Loading branch information
NiGhTTraX committed Jun 16, 2023
1 parent 3000b41 commit ab79d6b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions packages/jest-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"test": "jest --config src/jest.config.js"
},
"peerDependencies": {
"jest": "^29.0.0"
"jest": "^29.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@jest/transform": "~29.5.0",
Expand All @@ -36,12 +37,12 @@
"jest-environment-jsdom": "~29.5.0",
"jest-runtime": "~29.5.0",
"ts-jest": "~29.1.0",
"typescript": "~5.1.0",
"whatwg-fetch": "~3.6.0"
},
"devDependencies": {
"@types/jest": "~29.5.0",
"@types/node": "~18.16.0",
"jest": "~29.5.0"
"jest": "~29.5.0",
"typescript": "~5.1.0"
}
}
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ab79d6b

Please sign in to comment.