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",