UNPKG

conventional-commit-types-zh-cn

Version:

List of conventional commit types described in Simplified Chinese.

50 lines (49 loc) 1.38 kB
{ "$schema": "./index.spec.json", "types": { "feat": { "description": "添加新功能或功能性变化", "title": "特性" }, "fix": { "description": "修复 bug", "title": "问题修复" }, "docs": { "description": "仅文档变更", "title": "文档" }, "style": { "description": "不影响代码运行的代码样式变更(例如空白符,格式化,分号等)", "title": "样式" }, "refactor": { "description": "重构代码,既不新增功能,也不是修复 bug", "title": "代码重构" }, "perf": { "description": "提升性能的代码变更", "title": "性能提升" }, "test": { "description": "增加或修改测试用例", "title": "测试" }, "build": { "description": "对构建过程或构建依赖的变更(范围示例:gulp、broccoli、npm)", "title": "构建" }, "ci": { "description": "对持续集成(CI)相关配置文件或脚本的变更(范围示例:Travis、Circle)", "title": "持续集成" }, "chore": { "description": "未对源(src)代码与测试(test)文件进行变更的其他变更", "title": "其他" }, "revert": { "description": "恢复之前的提交", "title": "恢复" } } }