chore: move script apply-changelog

This commit is contained in:
DIYgod 2025-03-02 21:52:20 +08:00
parent 2f17ec1a8e
commit a488ccbf79
No known key found for this signature in database
23 changed files with 5 additions and 5 deletions

View File

@ -132,12 +132,12 @@
"bump": {
"before": [
"git pull --rebase",
"tsx scripts/apply-changelog.ts ${NEW_VERSION}",
"git add changelog",
"tsx apps/desktop/scripts/apply-changelog.ts ${NEW_VERSION}",
"git add apps/desktop/changelog",
"tsx apps/desktop/plugins/vite/generate-main-hash.ts",
"eslint --fix package.json",
"prettier --ignore-unknown --write package.json",
"git add package.json"
"eslint --fix apps/desktop/package.json",
"prettier --ignore-unknown --write apps/desktop/package.json",
"git add apps/desktop/package.json"
],
"after": [
"gh pr create --title 'chore: Release v${NEW_VERSION}' --body 'v${NEW_VERSION}' --base main --head dev"