Skip to content

Commit

Permalink
fix: publish script will correctly update the package-lock.json file …
Browse files Browse the repository at this point in the history
…with the correct dependencies when making a new release (#883)
  • Loading branch information
krpeacock authored Jun 3, 2024
1 parent 63c913d commit a881e96
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Changed

- fix: publish script will correctly update the `package-lock.json` file with the correct dependencies when making a new release
- chore: updates agent error response to read "Gateway returns error" instead of "Server"`
- chore: updates dfinity/conventional-pr-title-action to v4.0.0
- chore: updates dfinity/conventional-pr-title-action to v3.2.0
Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,11 @@
"git pull",
"git checkout release/${version} 2>/dev/null || git checkout -b release/${version}",
"git merge main",
"npm run build",
"npm install",
"npm audit fix",
"git add .",
"git commit -m 'chore: release ${version}'",
"git push --set-upstream origin release/${version}"
],
"after:release": [
Expand Down

0 comments on commit a881e96

Please sign in to comment.