Skip to content

Commit

Permalink
Fix check release step (#459)
Browse files Browse the repository at this point in the history
* Fix check release step

* Fix after-build-changelog
  • Loading branch information
fcollonval authored Nov 2, 2022
1 parent 15fb5d1 commit 4de90c4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,14 @@
},
"hooks": {
"after-build-changelog": [
"yarn",
"yarn build:dist",
"node scripts/format-changelog.js"
],
"before-build-npm": "yarn build:dist",
"before-build-npm": [
"yarn",
"yarn build:dist"
],
"before-draft-release": "node scripts/tag-versions.js"
}
},
Expand Down

0 comments on commit 4de90c4

Please sign in to comment.