From cf2caddefb9b27dcc9f368a5919f0193eb23c2ad Mon Sep 17 00:00:00 2001 From: h_mo <596417202@qq.com> Date: Tue, 20 Aug 2024 16:46:05 +0800 Subject: [PATCH] =?UTF-8?q?feat(release):=20=E6=B7=BB=E5=8A=A0=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E5=8F=91=E5=B8=83=E8=84=9A=E6=9C=AC=E5=92=8C=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E7=B1=BB=E5=9E=8B=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增`.versionrc`文件,定义版本发布时的类型和部分。- 在`package.json`中添加版本发布脚本,支持不同类型版本的发布工作流。 - 更新postinstall脚本,可能包含版本发布脚本的引用。 --- .versionrc | 16 ++++++++++++++++ package.json | 10 +++++++++- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 .versionrc diff --git a/.versionrc b/.versionrc new file mode 100644 index 0000000..eef3314 --- /dev/null +++ b/.versionrc @@ -0,0 +1,16 @@ +{ + "types": [ + {"type": "chore", "section":"'🎫 Chores | 其他更新", "hidden": false}, + {"type": "revert", "section":"⏪ Reverts | 回退", "hidden": false}, + {"type": "feat", "section": "✨ Features | 新功能", "hidden": false}, + {"type": "fix", "section": "🐛 Bug Fixes | Bug 修复", "hidden": false}, + {"type": "improvement", "section": "Feature Improvements", "hidden": false}, + {"type": "docs", "section":"📝 Documentation | 文档", "hidden": false}, + {"type": "style", "section":"💄 Styles | 风格", "hidden": false}, + {"type": "refactor", "section":"💄 Refactor | 重构", "hidden": false}, + {"type": "perf", "section":"⚡ Performance Improvements | 性能优化", "hidden": false}, + {"type": "test", "section":"✅ Tests | 测试", "hidden": false}, + {"type": "build", "section":"👷‍ Build System | 构建", "hidden": false}, + {"type": "ci", "section":"🔧 Continuous Integration | CI 配置", "hidden":false} + ] +} diff --git a/package.json b/package.json index 20a148b..4d15819 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,14 @@ "build:quickapp-webview-union": "uni build -p quickapp-webview-union", "lint:fix": "eslint . --fix", "git:hooks": "npx simple-git-hooks", - "postinstall": "weapp-tw patch" + "postinstall": "weapp-tw patch", + "version:first": "commit-and-tag-version --first-release", + "version:alpha": "commit-and-tag-version --prerelease alpha", + "version:beta": "commit-and-tag-version --prerelease beta", + "version:rc": "commit-and-tag-version --prerelease rc", + "version:patch": "commit-and-tag-version --release-as patch", + "version:minor": "commit-and-tag-version --release-as minor", + "version:major": "commit-and-tag-version --release-as major" }, "dependencies": { "@alova/adapter-uniapp": "^2.0.4", @@ -73,6 +80,7 @@ "@vitejs/plugin-vue": "^5.1.2", "@vue/runtime-core": "^3.4.38", "autoprefixer": "^10.4.20", + "commit-and-tag-version": "^12.4.1", "eslint": "^9.9.0", "eslint-plugin-format": "^0.1.2", "globals": "^15.9.0",