赞
踩
本文为译文,原为为:Christian Ing Sunardi: Automate JavaScript project versioning with commitizen and standard-version
其实手动更新版本号,changelog, 创建 git tags
还是比较麻烦的。有没有更好的方法?别怕,使用 standard-version ,只需要一行命令,就会帮你搞定一切!为实现自动化版本控制,有一些基础配置需要做。
在使用 standard-version
之前,需要遵循 Conventional Commit Specifications 来进行标准化的 commit message 编写。这是因为 standard-version
是基于 commit 类型来更新版本号的(feature 会更新 minor, bug fix 会更新 patch, BREAKING CHANGES 会更新 major)。commitizen 可以帮助我们提交符合 Conventional Commit Specifications 的 commit message。
npm install -D commitizen
commitizen init cz-conventional-changelog --save-dev --save-exact
- "scripts": {
- "commit" : "git-cz"
- }
首先我们 git add .
文件,然后 npm run commit
,此时 commitizen 会通过 CLI 对我们进行询问:
选择提交类型后,会需要我们填写详细信息:
detail.png
至此,我们的修改已经被成功提交,可以开始配置 standard-version 了。
当我们使用 commitizen 进行标准化提交之后,我们就可以使用 standard-version 进行版本管理自动化了,包括更新 CHANGELOG.md,以及使用 git tag
。
npm install -D standard-version
- "scripts": {
- "commit" : "git-cz",
- "release": "standard-version"
- }
为了合理的使用 standard-version,我们首先需要 git add .
文件,然后执行 npm run commit
,最后执行 npm run release
。
默认情况下,standard-version 只会在 CHANGELOG.md 中记录 feat
和 fix
类型的提交。如果想记录其他类型的提交,需要如下步骤:
.versionrc
的文件,并粘贴复制一下内容:- // .versionrc
- {
- "types": [
- {"type": "chore", "section":"Others", "hidden": false},
- {"type": "revert", "section":"Reverts", "hidden": false},
- {"type": "feat", "section": "Features", "hidden": false},
- {"type": "fix", "section": "Bug Fixes", "hidden": false},
- {"type": "improvement", "section": "Feature Improvements", "hidden": false},
- {"type": "docs", "section":"Docs", "hidden": false},
- {"type": "style", "section":"Styling", "hidden": false},
- {"type": "refactor", "section":"Code Refactoring", "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":"CI", "hidden":false}
- ]
- }
"type"
commit 类型"section"
不同的 commit 类型所在 CHANGELOG.md 中的区域"hidden"
是否在 CHANGELOG.md 中显示截至目前,所有的配置已经设置完毕。让我们用一个真实的开发工作流来梳理一下 *commitizen * 与 standard-version 的使用。
workflow.png
git add .
git-cz
来提交文件:npm run commit
git push origin <feature-branch>
master
分支提交 Pull Requestnpm run release
(自动更新版本号,自动更新 CHANGELOG.md, 自动创建 git tag
)git tags
推送至远端:git push --follow-tags origin master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。