Skip to content

Commit

Permalink
fix(semantic-release): deal with rate limiting
Browse files Browse the repository at this point in the history
See semantic-release/semantic-release#2204

Signed-off-by: Will Soto <willsoto@users.noreply.github.com>
  • Loading branch information
willsoto committed Sep 29, 2023
1 parent eefbbea commit fa84978
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,13 @@
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/github",
{
"successComment": false,
"failTitle": false
}
],
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/git"
Expand Down Expand Up @@ -146,14 +152,15 @@
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"packageManager": "pnpm@8.8.0",
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"knex": "^2.0.0",
"objection": "^3.0.0"
},
"packageManager": "pnpm@8.8.0",
"volta": {
"node": "18.18.0"
"node": "18.18.0",
"pnpm": "8.8.0"
}
}

0 comments on commit fa84978

Please sign in to comment.