Skip to content
This repository was archived by the owner on May 23, 2025. It is now read-only.

fix(deps): move semantic-release to peer dependencies #66

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 16 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,28 @@
"dependencies": {
"@semantic-release/error": "^3.0.0",
"aggregate-error": "^3.1.0",
"debug": "^4.3.4",
"debug": "^4.3.5",
"execa": "^5.1.1",
"lodash": "^4.17.21",
"semantic-release": "^22.0.7"
"lodash": "^4.17.21"
Comment on lines 28 to +32
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was unable to update @semantic-release/error, aggregate-error or execa due to module errors while importing during Jest execution.

},
"devDependencies": {
"@saithodev/semantic-release-sharedconf-npm": "^2.1.2",
"@types/debug": "^4.1.7",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "^14.18.36",
"@types/semantic-release": "^20.0.5",
"@types/semantic-release__error": "^3.0.0",
"@saithodev/semantic-release-sharedconf-npm": "^2.2.1",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.6",
"@types/node": "^20.14.9",
"@types/semantic-release": "^20.0.6",
"@types/semantic-release__error": "^3.0.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.4.2",
"ts-jest": "^29.0.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-mockito": "^2.6.1",
"typedoc": "^0.23.24",
"typescript": "^4.9.5"
"typedoc": "^0.26.3",
"typescript": "^5.5.3"
},
"peerDependencies": {
"semantic-release": ">=22.0.0"
},
"config": {
"commitizen": {
Expand Down
Loading